HDOJ/HDU 1242 Rescue(经典BFS深搜-优先队列)
发布日期:2021-06-29 13:36:41 浏览次数:2 分类:技术文章

本文共 2462 字,大约阅读时间需要 8 分钟。

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

又是一道经典的深搜题,做了1180题再来做这个,就是秒A啊。

说下题意:
天使被关在了一个监狱里面,a代表天使,r代表天使的朋友,x是警卫,#是墙。r可以杀死所以的警卫,杀一个警卫需要1个单位时间,移动一步也需要一个单位时间。问,天使的朋友r最短需要多久才可以把天使a救出来。
如果不能救出天使,输出:Poor ANGEL has to stay in the prison all his life.

#include 
#include
#include
#include
using namespace std;struct node{ int x,y,t; friend bool operator<(node n1,node n2){ return n2.t
=n||y<0||y>=m){ return 0; } if(map[x][y]=='#'){ return 0; } if(d[x][y]){ return 0; } return 1;}void bfs(){ priority_queue
q; ft.x=rx; ft.y=ry; ft.t=0; q.push(ft); d[rx][ry]=1; while(!q.empty()){ ft=q.top(); q.pop(); //printf("%d,%d,%d\n",ft.x,ft.y,ft.t); int x=ft.x; int y=ft.y; if(x==ax&&y==ay){ printf("%d\n",ft.t); return; } for(int i=0;i<4;i++){ x=ft.x+mx[i]; y=ft.y+my[i]; if(!judge(x,y)){ continue; } node nt; if(map[x][y]=='.'||map[x][y]=='a'){ nt.x=x; nt.y=y; nt.t=ft.t+1; d[x][y]=1; q.push(nt); }else if(map[x][y]=='x'){ nt.x=x; nt.y=y; nt.t=ft.t+2; d[x][y]=1; q.push(nt); } } } printf("Poor ANGEL has to stay in the prison all his life.\n");}int main(){ while(~scanf("%d%d",&n,&m)){ memset(d,0,sizeof(d)); for(int i=0;i

转载地址:https://chenhx.blog.csdn.net/article/details/51872338 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:Web---图片验证码生成教程详解-从简单到复杂-从本地到前后台
下一篇:HDOJ/HDU 1180 诡异的楼梯(经典BFS-详解)

发表评论

最新留言

逛到本站,mark一下
[***.202.152.39]2024年04月16日 06时59分08秒