hdu1010 Tempter of the Bone(DFS+剪枝)

网友投稿 520 2022-11-10

hdu1010 Tempter of the Bone(DFS+剪枝)

hdu1010 Tempter of the Bone(DFS+剪枝)

Tempter of the Bone

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 90716    Accepted Submission(s): 24683

Problem 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

Author

ZHANG, Zheng

Source

​​ZJCPC2004​​

Recommend

JGShining   |   We have carefully selected several similar problems for you:   ​​1072​​​  ​​​1312​​​  ​​​1026​​​  ​​​1240​​​  ​​​1175​​

​​Statistic​​ |

​​Submit​​ |

​​Discuss​​ |

​​Note​​

这道题不是求最短时间,而是刚好在那个时间到达。

也要利用好剪枝,否则会超时。

剪枝1:如果起点和终点的最短时间还比t大 一定不能到达。第二个是根据坐标奇偶性,坐标奇偶性就是(x+y)/2。如果S坐标和D坐标的奇偶性

相同那么就需要偶数步到达。如果不一样就需要奇数步。

#include #include #include char map[10][10];int dir[4][2]={1,0,-1,0,0,1,0,-1};int vis[10][10],flag,n,m,t;void DFS(int x,int y,int ant){ if(ant==t&&map[x][y]=='D') { flag=1; return ; } if(ant>=t)//如果步数大于t,返回上一步 return ; for(int i=0;i<4;i++) { int x1=x+dir[i][0]; int y1=y+dir[i][1]; if(!vis[x1][y1]&&x1>=0&&x1=0&&y1t||(st1+st2+ed1+ed2+t)%2==1)//剪枝1 { printf("NO\n"); continue; } vis[st1][st2]=1; DFS(st1,st2,0); if(flag) printf("YES\n"); else printf("NO\n"); } return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:idea使用Mybatis逆向工程插件详情
下一篇:关于外网如何访问内网资源的解决办法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~