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;
    }

  • 相关阅读:
    python中关于操作时间的方法(一):使用time模块
    size_t类型
    批量下载网络图片并zip打包
    遇到的java面试题
    jsp中button与submit的用法
    springmvc json字符串转化成json对象
    Cas 介绍及使用
    java中post时中文乱码
    mybatis使用generator生成对应的model、mapping配置文件、dao
    移动端接口:java写get方式访问数据(springmvc+spring。。。)
  • 原文地址:https://www.cnblogs.com/chen9510/p/4707542.html
Copyright © 2011-2022 走看看