zoukankan      html  css  js  c++  java
  • HDU 1693 Eat the Trees

    Problem Description
    Most of us know that in the game called DotA(Defense of the Ancient), Pudge is a strong hero in the first period of the game. When the game goes to end however, Pudge is not a strong hero any more.
    So Pudge’s teammates give him a new assignment—Eat the Trees!

    The trees are in a rectangle N * M cells in size and each of the cells either has exactly one tree or has nothing at all. And what Pudge needs to do is to eat all trees that are in the cells.
    There are several rules Pudge must follow:
    I. Pudge must eat the trees by choosing a circuit and he then will eat all trees that are in the chosen circuit.
    II. The cell that does not contain a tree is unreachable, e.g. each of the cells that is through the circuit which Pudge chooses must contain a tree and when the circuit is chosen, the trees which are in the cells on the circuit will disappear.
    III. Pudge may choose one or more circuits to eat the trees.

    Now Pudge has a question, how many ways are there to eat the trees?
    At the picture below three samples are given for N = 6 and M = 3(gray square means no trees in the cell, and the bold black line means the chosen circuit(s))

     
    Input
    The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 10 cases.
    For each case, the first line contains the integer numbers N and M, 1<=N, M<=11. Each of the next N lines contains M numbers (either 0 or 1) separated by a space. Number 0 means a cell which has no trees and number 1 means a cell that has exactly one tree.
     
    Output
    For each case, you should print the desired number of ways in one line. It is guaranteed, that it does not exceed 263 – 1. Use the format in the sample.
     
    Sample Input
    2 6 3 1 1 1 1 0 1 1 1 1 1 1 1 1 0 1 1 1 1 2 4 1 1 1 1 1 1 1 1
     
    Sample Output
    Case 1: There are 3 ways to eat the trees. Case 2: There are 2 ways to eat the trees.
     
     
    裸插头dp
    #include<queue>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    const int bi=1e8;
    const int MAXN=531441;
    int i;
    struct na{
        int x,z;
        na(int xx,int zz):x(xx),z(zz){}
    };
    int n,m,x,y,z,a[21],k,p1,p2,en,t;
    bool map[14][14];
    long long f[2][MAXN+1],ans;
    int v[2][MAXN+1];
    queue <na> q;
    inline int gx(int x,int q1,int q2){k=0;for (register int i=m+1;i;i--) k=k*3+(i==x?q1:(i==x+1?q2:a[i]));return k;}
    inline void up(int x,int z,long long lj){
        x++;
        k=x%2;
        if (v[k][z]!=x) v[k][z]=x,f[k][z]=0,q.push(na(x,z));
        f[k][z]=f[k][z]+lj;
    }
    char c[10];
    int main(){
        register int i,j;
        scanf("%d",&t);
        for (int u=1;u<=t;u++){
        ans=0;
        memset(map,0,sizeof(map));
        memset(v,0,sizeof(v));
        scanf("%d%d",&n,&m);
        for (j=1;j<=n;j++)
        for (i=1;i<=m;i++)
        scanf("%d",&map[i][j]);
        en=n*m-1;
        while(!map[en%m+1][en/m+1]&&en>0) en--;
        f[0][0]=v[0][0]=1;
        q.push(na(0,0));
        while(!q.empty()){
            na no=q.front();q.pop();
            unsigned long long an=f[no.x%2][no.z];
            if(no.x%m==0) no.z*=3;
            x=no.x%m+1;y=no.x/m+1;
            for (i=1;i<=m+1;i++) a[i]=0;
            for (i=1,j=no.z;j;i++,j/=3) a[i]=j%3;
            if (!map[x][y]){
                if (no.x==en) ans=ans+an;else
                up(no.x,gx(x,0,0),an);
            }else
            if (a[x]==1&&a[x+1]==2){
                if (no.x==en) ans=ans+an;
                else up(no.x,gx(x,0,0),an);/*多回路*/
            }else if (a[x]==2&&a[x+1]==1) up(no.x,gx(x,0,0),an);else
            if (a[x]==0&&a[x+1]==0){
                if (map[x][y+1]&&map[x+1][y]) up(no.x,gx(x,1,2),an);
            }else if (a[x]==0){
                if (map[x+1][y]) up(no.x,gx(x,0,a[x+1]),an);
                if (map[x][y+1]) up(no.x,gx(x,a[x+1],0),an);
            }else if (a[x+1]==0){
                if (map[x+1][y]) up(no.x,gx(x,0,a[x]),an);
                if (map[x][y+1]) up(no.x,gx(x,a[x],0),an);
            }else if (a[x]==a[x+1]){
                p1=p2=0;
                if (a[x]==1)
                for (j=0,i=x+2;i<=m;i++){
                    if (a[i]==1) j--;
                    if (a[i]==2) j++;
                    if (j>0&&!p1) p1=i,j--;
                    if (j>0&&p1){p2=i;break;}
                }else
                for (j=0,i=x-1;i;i--){
                    if (a[i]==1) j++;
                    if (a[i]==2) j--;
                    if (j>0&&!p2) p2=i,j--;
                    if (j>0&&p2){p1=i;break;}
                }
                a[p1]=1;a[p2]=2;up(no.x,gx(x,0,0),an);
            }
        }
        printf("Case %d: There are %I64d ways to eat the trees.
    ",u,ans);
        }
    }
  • 相关阅读:
    【自动化测试】rf+selenium中解决for计数嵌套循环问题
    【自动化测试】RF链接数据库12c遇到的问题总结
    【自动化测试】关于如何管理规范整个团队的想法(1)
    python爬虫--基本流程
    python爬虫--理论
    [工具箱]一键优化Windows
    [工具箱]禁用Windows系统更新做了哪些操作?
    有人说要节能,有人说要耗能
    让攻击挖矿耗能的攻击者闭嘴的方法是?
    POC挖矿没有前途
  • 原文地址:https://www.cnblogs.com/Enceladus/p/5137160.html
Copyright © 2011-2022 走看看