Rescue
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 10639 Accepted Submission(s): 3898
Problem Description
Angel was caught by the MOLIGPY! He was put in prison by Moligpy. The prison is described as a N * M (N, M <= 200) matrix. There are WALLs, ROADs, and GUARDs in the prison.
Angel's friends want to save Angel. Their task is: approach Angel. We assume that "approach Angel" is to get to the position where Angel stays. When there's a guard in the grid, we must kill him (or her?) to move into the grid. We assume that we moving up, down, right, left takes us 1 unit time, and killing a guard takes 1 unit time, too. And we are strong enough to kill all the guards.
You have to calculate the minimal time to approach Angel. (We can move only UP, DOWN, LEFT and RIGHT, to the neighbor grid within bound, of course.)
Angel's friends want to save Angel. Their task is: approach Angel. We assume that "approach Angel" is to get to the position where Angel stays. When there's a guard in the grid, we must kill him (or her?) to move into the grid. We assume that we moving up, down, right, left takes us 1 unit time, and killing a guard takes 1 unit time, too. And we are strong enough to kill all the guards.
You have to calculate the minimal time to approach Angel. (We can move only UP, DOWN, LEFT and RIGHT, to the neighbor grid within bound, of course.)
Input
First line contains two integers stand for N and M.
Then N lines follows, every line has M characters. "." stands for road, "a" stands for Angel, and "r" stands for each of Angel's friend.
Process to the end of the file.
Then N lines follows, every line has M characters. "." stands for road, "a" stands for Angel, and "r" stands for each of Angel's friend.
Process to the end of the file.
Output
For each test case, your program should output a single integer, standing for the minimal time needed. If such a number does no exist, you should output a line containing "Poor ANGEL has to stay in the prison all his life."
Sample Input
7 8 #.#####. #.a#..r. #..#x... ..#..#.# #...##.. .#...... ........
Sample Output
13广搜+优先队列模版AC代码:#include <iostream> #include <cstring> #include <queue> using namespace std; char map[205][205]; int d[4][2]={0,1,0,-1,-1,0,1,0}; int m,n,sx,sy,ex,ey; struct node { int x,y; int step; friend bool operator<(node n1,node n2) { return n2.step<n1.step; } }; bool judge(int x,int y) { if(x<0||x>=n||y<0||y>=m) return false; if(map[x][y]=='#') return false; return true; } int bfs() { priority_queue<node>q; node cur,next; int i; cur.x=sx; cur.y=sy; cur.step=0; map[cur.x][cur.y]='#'; q.push(cur); while(!q.empty()) { cur=q.top(); q.pop(); if(cur.x==ex&&cur.y==ey) return cur.step; for(i=0;i<4;i++) { next.x=cur.x+d[i][0]; next.y=cur.y+d[i][1]; if(!judge(next.x,next.y)) continue; if(map[next.x][next.y]=='x') next.step=cur.step+2; else next.step=cur.step+1; map[next.x][next.y]='#'; q.push(next); } } return -1; } int main() { while(cin>>n>>m) { for(int i=0;i<n;i++) for(int j=0;j<m;j++) {cin>>map[i][j]; if(map[i][j]=='r') { sx=i; sy=j; } if(map[i][j]=='a') { ex=i; ey=j; } } int ans=bfs(); if(ans==-1) cout<<"Poor ANGEL has to stay in the prison all his life."<<endl; else cout<<ans<<endl; } return 0; }