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.)
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.
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
bfs+优先队列
点击查看代码
#include<bits/stdc++.h>
using namespace std;
const int N=210;
char ch[N][N];
bool vis[N][N];
int st[N][N],dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
struct node{
int x,y,s;
bool operator < (const node &T1) const
{
return s>T1.s;
}
};
int n,m;
void bfs(int x,int y)
{
memset(vis,0,sizeof vis);
priority_queue<node> q;
q.push({x,y,0});
vis[x][y]=1;
while(q.size())
{
auto p=q.top();
q.pop();
int a=p.x,b=p.y,s=p.s;
if(st[a][b]==-1)
{
cout<<s<<'\n';return ;
}
for(int i=0;i<4;++i)
{
int xx=a+dir[i][0];
int yy=b+dir[i][1];
if(xx>=0&&xx<n&&yy>=0&&yy<m&&st[xx][yy]&&!vis[xx][yy])
{
vis[xx][yy]=1;
q.push({xx,yy,s+st[a][b]});
}
}
}
cout<<"Poor ANGEL has to stay in the prison all his life.\n";
}
int main()
{
while(cin>>n>>m)
{
int x,y;
for(int i=0;i<n;++i)
for(int j=0;j<m;++j)
{
cin>>ch[i][j];
if(ch[i][j]=='.') st[i][j]=1;
else if(ch[i][j]=='#') st[i][j]=0;
else if(ch[i][j]=='x') st[i][j]=2;
else if(ch[i][j]=='a') st[i][j]=1,x=i,y=j;
else st[i][j]=-1;
}
bfs(x,y);
}
return 0;
}