我是靠谱客的博主 幸福雪糕,最近开发中收集的这篇文章主要介绍ZOJ--1649--Rescue,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目描述:
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.)
输入描述:
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.
输出描述:
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.”
输入:
7 8
#.#####.
#.a#…r.
#…#x…
…#…#.#
#…##…
.#…

输出:
13
题意:
救人
题解
BFS
代码:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn = 300 + 5;
char s[maxn][maxn];
int dir[][2] ={{1,0},{0,1},{-1,0},{0,-1}};
int n,m,sx,sy,ex,ey;
int vis[maxn][maxn];
struct point{
int x,y,step;
bool operator < (const point & p) const{
return step > p.step;
}
};
int bfs(){
priority_queue<point> pq;
point p;
p.x = sx;
p.y = sy;
p.step = 0;
vis[sx][sy] = 1;
pq.push(p);
while(!pq.empty()){
point pp = pq.top();
pq.pop();
if(pp.x == ex && pp.y == ey) return pp.step;
for(int i = 0; i < 4; i ++){
int dx = pp.x + dir[i][0];
int dy = pp.y + dir[i][1];
//cout<<pp.x<<" "<<pp.y<<" "<<dx<<" "<<dy<<endl;
if(dx >= 0 && dx < n && dy >= 0 && dy < m && vis[dx][dy] == 0){
if(s[dx][dy] == '#') continue;
point newp;
newp.x = dx;
newp.y = dy;
vis[dx][dy] = 1;
if(s[dx][dy] == 'x') newp.step = pp.step + 2;
else newp.step = pp.step + 1;
//cout<<"step = "<<newp.step<<endl;
pq.push(newp);
}
}
}
return -1;
}
int main(){
while(scanf("%d%d",&n,&m)!=EOF){
memset(vis,0,sizeof(vis));
for(int i = 0; i < n; i ++){
scanf("%s",s[i]);
}
for(int i = 0; i < n; i ++){
for(int j = 0; j < m; j ++){
if(s[i][j] == 'r'){
sx = i;
sy = j;
}
else if(s[i][j] == 'a'){
ex = i;
ey = j;
}
}
}
int ans = bfs();
if(ans == - 1) printf("Poor ANGEL has to stay in the prison all his life.n");
else printf("%dn",ans);
}
return 0;
}

最后

以上就是幸福雪糕为你收集整理的ZOJ--1649--Rescue的全部内容,希望文章能够帮你解决ZOJ--1649--Rescue所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部