zoukankan      html  css  js  c++  java
  • 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;
    }
  • 相关阅读:
    虚拟设备 ide1:0 将开始断开
    虚拟机集群启动 某一台启动失败
    jeesite1,工具类,文件介绍
    line-clamp
    js中同名的函数的调用情况
    获取子页面iframe的点击事件及iframe跨域的交互
    Docker环境搭建入门
    软件工程课后作业:论我对百度搜索的看法
    第二阶段第十天12.10
    软件工程:用户场景描述
  • 原文地址:https://www.cnblogs.com/pblr/p/4696299.html
Copyright © 2011-2022 走看看