Tempter of the Bone
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 35460 Accepted Submission(s): 9511
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
1 //回溯算法 2 /* 3 //代码一:输出结果错误,我对比了好几天,就是找不住原因,先放放吧!路过的求指点。。。。 4 #include5 int m,n,endi,endj,time,escape; 6 int dir[4][2]={ {-1,0},{0,1},{1,0},{0,-1}}; 7 char maze[9][9]; 8 9 void DFS(int i,int j,int t) 10 { 11 int k,temp; 12 if(i<0||i>=n||j<0||j>=m) 13 return; 14 if(i==endi&&j==endj&&time==t) 15 { 16 escape=1; 17 return; 18 } 19 if(escape) 20 return; 21 temp=time-t-abs(i-endi)-abs(j-endj);//剪枝 22 if(temp<0||temp&1)//剪枝,如果是奇数也不行,假设当time-temp时候正好到达终点, 23 return; //让再走temp时间再回到终点,只有temp为偶数时候才满足题意 24 for(k=0;k<4;++k) 25 { 26 // if(i+dir[k][0]<0||i+dir[k][0]>=n||j+dir[k][1]<0||j+dir[k][1]>=m) 27 // return; 28 if(maze[i+dir[k][0]][j+dir[k][1]]!='X') 29 { 30 maze[i+dir[k][0]][j+dir[k][1]]='X'; 31 DFS(i+dir[k][0],j+dir[k][1],t+1); 32 maze[i+dir[k][0]][j+dir[k][1]]='.';//回溯---退回时恢复现场 33 } 34 } 35 return; 36 } 37 38 int main() 39 { 40 int i,j,sti,stj,wall; 41 while(scanf("%d%d%d",&n,&m,&time)&&n||m||time) 42 { 43 getchar();//吸收换行符 44 wall=escape=0; 45 for(i=0;i 81 using namespace std; 82 char maze[9][9]; 83 int x,y,n,desx,desy,temp; // x is row y is cow n is steps 84 bool escape; //run or not 85 int d[4][2] = { { 0,1},{ 0,-1},{ 1,0},{-1,0}}; // stand for four directions 86 87 void DFS(int stax,int stay,int step) 88 { 89 if(stax>x||stay>y||stay<=0||stax<=0) 90 return; 91 if(stax==desx&&stay==desy&&step==n) 92 { 93 escape=true; 94 return; 95 } 96 if(escape) return;// cut tree 97 temp=n-step-abs(stax-desx)-abs(stay-desy); 98 if(temp<0||temp&1) return; 99 for(int i=0;i<4;i++)100 {101 if(maze[stax+d[i][0]][stay+d[i][1]]!='X')102 {103 maze[stax+d[i][0]][stay+d[i][1]]='X';104 DFS(stax+d[i][0],stay+d[i][1],step+1);105 maze[stax+d[i][0]][stay+d[i][1]]='.'; // back106 }107 }108 return;109 }110 111 int main()112 {113 int stax,stay;114 while(cin>>x>>y>>n&&x+y+n)115 {116 escape=false;117 int wall=0;118 for(int i=1;i<=x;i++) 119 {120 for(int j=1;j<=y;j++)121 {122 cin>>maze[i][j];123 if(maze[i][j] =='S') 124 {125 stax=i;126 stay=j;127 }128 if(maze[i][j]=='D')129 {130 desx=i;131 desy=j;132 }133 if(maze[i][j]=='X')134 wall++;135 }136 }137 if(x*y-wall<=n) 138 {139 cout<<"NO\n";140 continue;141 }142 maze[stax][stay]='X';143 DFS(stax,stay,0);144 cout<<(escape?"YES":"NO")<