zoukankan      html  css  js  c++  java
  • 深度搜索(2)

    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. 
     
     

    /*剪枝很重要,可走的格数小于时间则减去,然后就是奇偶性剪枝
    可以把map看成这样:
    0 1 0 1 0 1
    1 0 1 0 1 0
    0 1 0 1 0 1
    1 0 1 0 1 0
    0 1 0 1 0 1
    从为 0 的格子走一步,必然走向为 1 的格子
    从为 1 的格子走一步,必然走向为 0 的格子
    即:
     0 ->1或1->0 必然是奇数步
     0->0 走1->1 必然是偶数步
    所以当遇到从 0 走向 0 但是要求时间是奇数的,或者, 从 1 走向 0 但是要求时间是偶数的 都可以直接判断不可达!
    */

    #include <iostream>
    #include <stdlib.h>
    #include <cstdio>
    using namespace std;
    char map[8][8];
    int dir[4][2]={{0,-1},{0,1},{1,0},{-1,0}};
    int n,m,t,step,remain,destx,desty;
    bool found;

    void dfs(int ic, int jc, int tc)
    {
        if(tc==t&&ic==destx&&jc==desty)
            found=true;
        if(found)return;
        int v=t-tc-abs(destx-ic)-abs(desty-jc);           //奇偶性剪枝
        if(v<0||v&1)return;                                       //if((abs(destx-ic)+abs(desty-jc))%2!=(t-tc)%2)return;

        for(int i=0;i<4;i++)
        {
            int ni=ic+dir[i][0];
            int nj=jc+dir[i][1];
            if(ni>=0&&ni<n&&nj>=0&&nj<m&&map[ni][nj]!='X')
            {
                map[ni][nj]='X';
                dfs(ni,nj,tc+1);
                map[ni][nj]='.';
            }
        }
    }

    int main()
    {
        while(scanf("%d%d%d",&n,&m,&t)==3&&(n+m+t))
        {
            int icur,jcur;
            step=0; remain=0; found=false;
            for(int i=0;i<n;i++)
            for(int j=0;j<m;j++)
            {
               cin>>map[i][j];
               if(map[i][j]=='S')
               icur=i,jcur=j;
               else if(map[i][j]=='D')
              {
                  remain++;
                  destx=i;desty=j;
              }
               else if(map[i][j]=='.') remain++;
            }
            map[icur][jcur]='X';
            if(remain>=t)
                dfs(icur,jcur,0);
            if(found)cout<<"YES"<<endl;
            else cout<<"NO"<<endl;
        }
        return 0;
    }

  • 相关阅读:
    【转载】 NumPy之:数据类型对象dtype
    在深度学习的视觉VISION领域数据预处理的魔法常数magic constant、黄金数值的复现: mean=[0.485, 0.456, 0.406],std=[0.229, 0.224, 0.225]
    关于Numpy数据类型对象(dtype)使用详解
    【转载】 大端模式和小端模式的区别是什么?
    在使用pytorch官方给出的torchvision中的预训练模型参数时为保证收敛性要求使用原始的数据预处理方式
    【转载】 解决 sudo echo x > 时的 Permission denied错误
    Javascript高级程序设计第二版前三章基本数据等笔记
    冒号课堂§3.4:事件驱动
    理解 JavaScript 闭包
    Browser clientX scrollLeft clientLeft
  • 原文地址:https://www.cnblogs.com/chen9510/p/4707542.html
Copyright © 2011-2022 走看看