hdu 1010 Tempter of the Bone DFS+奇偶剪枝,入门题

Tempter of the BoneTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 78390Accepted Submission(s): 21395

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 5S.X…X…XD….3 4 5S.X…X….D0 0 0

Sample Output

NOYES

这真是一个入门的好题啊!!首先先看百度百科:奇偶剪枝,这个写的不太好,,倒是挺通俗易懂的,没有证明,,用着怎么都不舒服!

下面请看我的代码:

#include <iostream>#include <cstdio>#include <cstdlib>#include <string.h>#define MAX 10using namespace std ;char map[MAX][MAX] ;int dir[4][2]={1,0,-1,0,0,1,0,-1} ;int desX , desY , time ;int n , m ;bool judge(int x , int y , int step){int a = abs(x-desX)+abs(y-desY);return ( (a&1)==(step&1) ) && a<=step;}bool DFS(int x , int y , int step){ if((map[x][y]=='D' && step != 0)|| (map[x][y]!='D'&&step == 0) )return false ;if(!judge(x,y,step))//奇偶和时间判断return false ;for(int i = 0 ; i < 4 ; ++i){int posx = x + dir[i][0] , posy = y + dir[i][1] ;if(x<0||y<0||x>=n||y>=m)continue ;if(map[posx][posy] == '.'){map[posx][posy] = 'X' ;if(DFS(posx,posy,step-1))return true ;map[posx][posy] = '.' ;}else if(map[posx][posy] == 'D' && step == 1){return true ;} } return false ;}int main(){while(~scanf("%d%d%d",&n,&m,&time) && (n||m||time)){int x,y,roads=0;for(int i = 0 ; i < n ; ++i){for(int j = 0 ; j < m ; ++j){cin>>map[i][j] ;if(map[i][j] == 'S'){x = i , y = j ;}if(map[i][j] == 'D'){desX = i , desY = j ;}if(map[i][j] == '.'){++roads ;}}}if(roads+1<time){puts("NO") ;continue ;}if(DFS(x,y,time))printf("YES\n") ;elseprintf("NO\n") ;}return 0 ;}/*附上一组测试数据 5 4 10.S.XX..X..XD.X…..X*/

一个积极奋进的目标,一种矢志不渝的追求。

hdu 1010 Tempter of the Bone DFS+奇偶剪枝,入门题

相关文章:

你感兴趣的文章:

标签云: