hdu 1072 Nightmare (bfs+优先队列)
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1072
Description
Given the layout of the labyrinth and Ignatius‘ start position, please tell Ignatius whether he could get out of the labyrinth, if he could, output the minimum time that he has to use to find the exit of the labyrinth, else output -1.
Here are some rules:
1. We can assume the labyrinth is a 2 array.
2. Each minute, Ignatius could only get to 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 labyrinth.
4. If Ignatius get to the area which contains Bomb-Rest-Equipment when the exploding time turns to 0, he can‘t use the equipment to reset the bomb.
5. A Bomb-Reset-Equipment can be used as many times as you wish, if it is needed, Ignatius can get to any areas in the labyrinth as many times as you wish.
6. The time to reset the exploding time can be ignore, in other words, if Ignatius get to an area which contain Bomb-Rest-Equipment, and the exploding time is larger than 0, the exploding time would be reset to 6.
Input
Each test case starts with two 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 are five integers which indicate the different type of area in the labyrinth:
0: The area is 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.
Output
Sample Input
Sample Output
1 #include<iostream> 2 #include<queue> 3 #include<cstdio> 4 5 using namespace std; 6 7 struct node{ 8 int x,y; 9 int time; 10 int sss; 11 friend bool operator < (node a,node b){ 12 return a.time > b.time; 13 } 14 }; 15 16 int n,m,sx,sy,ex,ey; 17 int dir[8][2]={1,0,-1,0,0,-1,0,1}; 18 int map[10][10]; 19 20 bool inMap(int x,int y){ 21 return x>=0&&x<n&&y>=0&&y<m; 22 } 23 24 int bfs(){ 25 node cur,next; 26 priority_queue<node> q; 27 cur.x = sx; 28 cur.y = sy; 29 cur.time = 0; 30 cur.sss = 6; 31 q.push(cur); 32 while(!q.empty()){ 33 cur = q.top(); 34 q.pop(); 35 if(cur.sss<=0) 36 return -1; 37 if(cur.sss>0 && cur.x == ex && cur.y == ey) 38 return cur.time; 39 for(int i=0;i<4;i++){ 40 int xx = cur.x + dir[i][0]; 41 int yy = cur.y + dir[i][1]; 42 if(inMap(xx,yy) && map[xx][yy]!=0 && cur.sss>1){ 43 next.sss = cur.sss-1; 44 if(map[xx][yy]==4 && next.sss > 0){ 45 next.sss = 6; 46 map[xx][yy] = 0; 47 } 48 next.x = xx; 49 next.y = yy; 50 next.time = cur.time + 1; 51 q.push(next); 52 } 53 } 54 } 55 return -1; 56 } 57 58 int main(){ 59 int t,i,j; 60 cin>>t; 61 while(t--){ 62 cin>>n>>m; 63 for(i=0;i<n;i++) 64 for(j=0;j<m;j++){ 65 scanf("%d",&map[i][j]); 66 if(map[i][j]==2) 67 sx=i,sy=j; 68 else if(map[i][j]==3){ 69 ex=i,ey=j; 70 map[i][j] = 1; 71 } 72 } 73 cout<<bfs()<<endl; 74 } 75 return 0; 76 }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。