• Tempter of the Bone(DFS+奇偶剪枝)


    Tempter of the Bone
    Time Limit:1000MS    Memory Limit:32768KB    64bit IO Format:%I64d & %I64u
    SubmitStatus

    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
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 using namespace std;
     6 
     7 int n, m, t;
     8 int s[2], d[2];  //the position of the start point and the door
     9 char map[8][8];
    10 const int move[4][2] = {{0, 1}, {0, -1}, {1, 0}, {-1, 0}};
    11 
    12 int CutBranch(int i, int j)
    13 {
    14     return abs(i - d[0]) + abs(j - d[1]);
    15 }
    16 
    17 bool Judge(int i, int j)
    18 {
    19     return (map[i][j] != 'X' && i >= 0 && i < n && j >= 0 && j < m);
    20 }
    21 
    22 bool DFS(int i, int j, int cnt)
    23 {
    24     int a = CutBranch(i, j);
    25     if((a & 1) != ((t - cnt) & 1) || a > t - cnt) return 0;
    26     if(cnt == t)
    27         return map[i][j] == 'D' ?  1 : 0;
    28     if(map[i][j] == 'D')
    29         return cnt == t ? 1 : 0;
    30     map[i][j] = 'X';
    31     for(int k = 0; k < 4; k++)
    32     {
    33         int ii = i + move[k][0];
    34         int jj = j + move[k][1];
    35         if(Judge(ii, jj))
    36         {
    37             char tmp = map[ii][jj];
    38             int res = DFS(ii, jj, cnt + 1);
    39             if(res) return 1;
    40             map[ii][jj] = tmp;
    41         }
    42     }
    43     return 0;
    44 }
    45 
    46 int main()
    47 {
    48     int num_X;
    49     while(scanf("%d %d %d", &n, &m, &t) && n)
    50     {
    51         num_X = 0;
    52         for(int i = 0; i < n; i++)
    53             scanf("%s", map[i]);
    54         for(int i = 0; i < n; i++)
    55             for(int j = 0; j < m; j++)
    56             {
    57                 if(map[i][j] == 'X') num_X++;
    58                 if(map[i][j] == 'S')
    59                     s[0] = i, s[1] = j;
    60                 else if(map[i][j] == 'D')
    61                     d[0] = i, d[1] = j;
    62             }
    63         if(t > n * m - num_X) puts("NO");
    64         else
    65         {
    66             bool res = DFS(s[0], s[1], 0);
    67             if(res) puts("YES");
    68             else puts("NO");
    69         }
    70     }
    71     return 0;
    72 }

  • 相关阅读:
    HDU1548图论Dijkstra
    LINUX下sql常用命令
    Oracle DBLINK 简单使用
    自己常用百度搜索指令
    Element获取table中选中的行
    【Java】SpringBoot不扫描某个包
    Oracle创建Database link方法
    Oracle数据库中快照的使用
    spring.profiles.active和spring.profiles.include的使用与区别
    Spring Cloud Config 实现配置中心,看这一篇就够了
  • 原文地址:https://www.cnblogs.com/cszlg/p/2910405.html
Copyright © 2020-2023  润新知