• hoj-1010 Tempter of the Bone


    Description

    The doggie found a bone in an ancient maze, which fascinated him a lot. However, when he picked it up, the maze began to shake, and the doggie could feel the ground sinking. He realized that the bone was a trap, and he tried desperately to get out of this maze. 
    The maze was a rectangle with sizes N by M. There was a door in the maze. At the beginning, the door was closed and it would open at the T-th second for a short period of time (less than 1 second). Therefore the doggie had to arrive at the door on exactly the T-th second. In every second, he could move one block to one of the upper, lower, left and right neighboring blocks. Once he entered a block, the ground of this block would start to sink and disappear in the next second. He could not stay at one block for more than one second, nor could he move into a visited block. Can the poor doggie survive? Please help him. 
     

    Input

    The input consists of multiple test cases. The first line of each test case contains three integers N, M, and T (1 < N, M < 7; 0 < T < 50), which denote the sizes of the maze and the time at which the door will open, respectively. The next N lines give the maze layout, with each line containing M characters. A character is one of the following: 
    'X': a block of wall, which the doggie cannot enter;  'S': the start point of the doggie;  'D': the Door; or  '.': an empty block. 
    The input is terminated with three 0's. This test case is not to be processed. 
     

    Output

    For each test case, print in one line "YES" if the doggie can survive, or "NO" otherwise. 
     

    Sample Input

    4 4 5
    S.X.
    ..X.
    ..XD
    ....
    3 4 5
    S.X.
    ..X.
    ...D
    0 0 0
     

    Sample Output

    NO
    YES
     
         题意:从S点开始走,能否走T步刚好走到D点,X为障碍物。
         用dfs从S点搜索,每到D点判断是否走了T步,如果是就标记能走到,如果否,就继续搜。如果就普通搜,肯定会超时,所以要剪枝,如何剪枝,就看代码吧。
     
     
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<cmath>
    using namespace std;
    int n,m,t,p,ex,ey;
    char map[10][10];
    int yi[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
    void dfs(int x,int y,int time)
    {
        if (x<1||x>n||y<1||y>m||time>t||p==1) return ;
        int a=abs(x-ex);
        int b=abs(y-ey);
          a+=b;
        if (a>t-time) return ;
        if (x==ex&&y==ey&&time==t)
        {
             p=1;
            return ;
        }
        for (int i=0;i<4;i++)
        {
            int rx=x+yi[i][0];
            int ry=y+yi[i][1];
            if (map[rx][ry]!='X')
            {
                map[rx][ry]='X';
                dfs(rx,ry,time+1);
                map[rx][ry]='.';
            }
        }
        return ;
    }
    int main()
    {
        int i,j,x,y,z,a,b;
        while (~scanf("%d%d%d",&n,&m,&t))
        {
            z=0;
            if (n==0&&m==0&&t==0) break;
            p=0;
            for (i=1;i<=n;i++)
            for (j=1;j<=m;j++)
            {
                scanf(" %c",&map[i][j]);
                if (map[i][j]=='S'){x=i;y=j;}
                if (map[i][j]=='X') z++;
                if (map[i][j]=='D') {ex=i;ey=j;}
            }
             a=abs(x-ex);
         b=abs(y-ey);
        a+=b;
            if (m*n-z<=t||a%2!=t%2||a>t)
            {
                printf("NO
    ");
                continue;
            }
            map[x][y]='X';
            dfs(x,y,0);
            if (p==0) printf("NO
    ");
            else printf("YES
    ");
        }
        return 0;
    }
  • 相关阅读:
    BZOJ 4802 欧拉函数(Pollard_Rho)
    Codeforces 804E The same permutation(构造)
    Codeforces 804D Expected diameter of a tree(树形DP+期望)
    BZOJ 3399 [Usaco2009 Mar]Sand Castle城堡(贪心)
    BZOJ 2430 [Poi2003]Chocolate(贪心+归并排序)
    BZOJ 1707 [Usaco2007 Nov]tanning分配防晒霜(扫描线+贪心+优先队列)
    BZOJ 1828 [Usaco2010 Mar]balloc 农场分配(贪心+线段树)
    BZOJ 1827 [Usaco2010 Mar]gather 奶牛大集会(树形DP)
    BZOJ 2697 特技飞行(贪心)
    BZOJ 4883 [Lydsy2017年5月月赛]棋盘上的守卫(最小生成环套树森林)
  • 原文地址:https://www.cnblogs.com/pblr/p/4696299.html
Copyright © 2020-2023  润新知