Nightmaretime limit:2000/1000
MS (java/others) Memory limit:65536/32768 K (java/others)
Total submission (s): 7758 Accepted Submission (s): 3723
Problem Descriptionignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The Labyrinth has a exit, Ignatius should get out of the the labyrinth before the bomb explodes. The initial exploding time of the bomb is set to 6 minutes. To prevent the bomb from exploding by shake, Ignatius had to move slowly, which is to move from one area to the nearest are A (that's, if Ignatius stands on (x, y) Now, he could only on (X+1,y), (X-1,y), (x,y+1), or (x,y-1) in the next minute) Tak Es him 1 minute. Some area in the labyrinth contains a bomb-reset-equipment. They could reset the exploding time to 6 minutes.
Given the layout of the Labyrinth and Ignatius ' start position, please tell Ignatius whether he could get out of the The Labyr Inth, if he could, output the minimum time that he had to use to find the exit of the The labyrinth, else output-1.
Here is some rules:
1. We can assume the Labyrinth is a 2 array.
2. Each minute, Ignatius could-only get-one of the nearest area, and he should not walk out of the border, of course he Could not walk on a wall, too.
3. If Ignatius get to the exit when the exploding time turns to 0, he can ' t get out of the The Labyrinth.
4. If Ignatius get to the area which contains bomb-rest-equipment then the exploding time turns to 0, he can ' t use the equ Ipment to reset the bomb.
5. A Bomb-reset-equipment can used as many times as you wish, if it's needed, Ignatius can get to any areas in the lab Yrinth as many times as you wish.
6. The time to reset the exploding time can is ignore, in and words, if Ignatius get to a area which contain bomb-rest- Equipment, and the exploding time is larger than 0, the exploding time would being reset to 6.
Inputthe input contains several test cases. The first line of the input was a single integer T which is the number of test cases. T test Cases follow.
Each test case is starts with the integers N and M (1<=n,mm=8) which indicate the size of the labyrinth. Then N lines follow, each line contains M integers. The array indicates the layout of the Labyrinth.
There is five integers which indicate the different type of area in the Labyrinth:
0:the area was a wall, Ignatius should not walk on it.
1:the area contains nothing, Ignatius can walk on it.
2:ignatius ' start position, Ignatius starts his escape from this position.
3:the exit of the Labyrinth, Ignatius ' target position.
4:the area contains a bomb-reset-equipment, Ignatius can delay the exploding time by walking to these areas.
Outputfor Each test case, if Ignatius can get out of the labyrinth, you should output the minimum time he needs, else you should just output-1.
Sample Input
Sample Output
4-113I do not want to explain too much, http://blog.csdn.net/guodongxiaren/article/details/23552313 have Daniel wrote, I was according to his writing, code similarity reached 90% ~ ~ ~ I'm still growing up ~ ~ ~ Code:<pre name= "code" class= "CPP" > #include <cstdio> #include <queue> #include <cstring>using namespace std; int map[10][10], rest[10][10], spend[10][10], ans = -1;int dir[4][2] = {1,0,-1,0,0,1,0,-1}; int n, m;/ /columns and rows queue<int> q;bool judge (int x, int y, int time) {if (x<0| | X>=n | | y<0| | Y>=M)//coordinate out of bounds check {return false;} if (map[x][y] = = 0 | | rest[x][y]>=time)//position reasonable judgment {return false;} return true;} void BFS (int des) {Q.push (DES), while (!q.empty ()) {int des = Q.front (); Q.pop (); int x = DES/10, y = des%10; if (rest[x][y] = = 0) Continue; if (map[x][y] = = 3) {if (ans = =-1 | | spend[x][y]<ans) {ans = spend[x][y];} Continue;} if (map[x][y] = = 4) {Rest[x][y] = 6; Map[x][y] = 0;} for (int k = 0; k < 4; ++k) {int nextx = x + dir[k][0];int nexty = y + dir[k][1];if (judge (nextx,nexty,rest[x][y]-1)) {Q. Push (nextx*10+nexty); rest[nextx][nexty] = rest[x][y]-1; spend[nextx][nexty] = spend[x][y]+1;}}} int main () {int t;scanf ("%d", &t), while (t--) {int des; scanf ("%d%d", & n,&m); memset (map,0,sizeof (map)); Memset (spend,0,sizeof (spend)); Memset (rest,0,sizeof (rest)); for (int i = 0; i < n; ++i) {for (int j = 0; j < m; ++j) {scanf ("%d", &map[i][j]), if (map[i][j] = = 2) {Rest[i][j] = 6;d es = i*10 + j;}}} ans =-1; BFS (DES);p rintf ("%d\n", ans); return 0;}
Hdu 1072 Nightmare BFS, the first time to brush BFS problem, feel good ...