来源:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=1649
http://acm.hdu.edu.cn/showproblem.php?pid=1242
本题并不是简单地bfs,需要注意以下问题:
1、干掉一个门卫也需要1个单位的时间,也就是说要跳到‘x'个需要两个单位的时间,所以路径最短;
2、天使人缘好,朋友不一定只有1个。
我采用的方法是在bfs的基础上,一旦遇到’x',先把它的上一节点再进一次队,然后再访问一次‘x'。
不过在参考题解之后得知原来还有更好的方法,就是使用优先队列。
代码:
#include<iostream>
#include<queue>
#include<string.h>
using namespace std;
int main()
{
int x, y, x1, y1, n, m, i, j, vis[200][200], map[200][200],vx[200],vy[200];
int dx[4] = { 1, 0, -1, 0 }, dy[4] = { 0, 1, 0, -1 };
char ch[200][200];
while (cin >> n >> m)
{
queue<int>q;
memset(vis, 0, sizeof(vis));
memset(map, 0, sizeof(map));
for (i = 0; i<n; i++)
for (j = 0; j<m; j++)
{
cin >> ch[i][j];
if (ch[i][j] == 'r')
{
q.push(i); q.push(j);
vis[i][j] = 1;
}
}
while (!q.empty())
{
x = q.front(); q.pop();
y = q.front(); q.pop();
if (ch[x][y] == 'a') break;
for (i = 0; i<4; i++)
{
x1 = x + dx[i];
y1 = y + dy[i];
if (x1 >= 0 && x1<n&&y1 >= 0 && y1<m&&ch[x1][y1] != '#')
{
if (vis[x1][y1] == 0 && (ch[x1][y1] == '.' || ch[x1][y1] == 'a'))
{
q.push(x1);
q.push(y1);
map[x1][y1] = map[x][y] + 1;
vis[x1][y1] = 1;
}
if (vis[x1][y1] == 0 && ch[x1][y1] == 'x')
{
vx[x1] = x;
vy[y1] = y;
vis[x1][y1] = 2;
q.push(x);
q.push(y);
}
else if (vis[x1][y1] == 2 && (ch[x1][y1] == 'x') &&vx[x1]==x&&vy[y1]==y )
{
q.push(x1);
q.push(y1);
map[x1][y1]=map[x][y]+2;
vis[x1][y1] = 4;
}
}
}
}
if (ch[x][y] != 'a') cout << "Poor ANGEL has to stay in the prison all his life." << endl;
else cout << map[x][y] << endl;
}
return 0;
}
以上程序我没有采用优先队列,在hdoj上评测通过了,但是在zoj上试了n遍都无法通过,可能是算法本身有问题吧,由于时间问题,我也暂且搁着了。