概述
一看就知道和1026是一样的,并且比1026更简单!除了延迟处理,不含任何技巧!和我一样水平的银,赶紧练练手吧。。。TT。。http://acm.hdu.edu.cn/showproblem.php?pid=1242
#include <iostream>
#include <cstdio>
#include <string.h>
#include <queue>
#define N 201
using namespace std;
int n,m,res,s,e;
int jump[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
char map[N][N];
bool f[N][N];
struct node
{
int x,y,s;
}q,r,p;
void init()
{
int i,j;
res=-1;
for(i=0;i<n;i++)
{
getchar();
for(j=0;j<m;j++)
{
cin>>map[i][j];
if(map[i][j]=='r')
{
s=i;e=j;
}
}
}
memset(f,0,sizeof(f));
/*for(i=0;i<n;i++)
{
for(j=0;j<n;j++)
cout<<map[i][j];
cout<<endl;
}*/
}
int is_b(node p)
{
if(p.x<0 || p.y<0 || p.x>=n || p.y>=m
|| f[p.x][p.y] || map[p.x][p.y]=='#')
return 1;
return 0;
}
void bfs()
{
queue< node > que;
q.x=s;q.y=e;q.s=0;
f[s][e]=1;
que.push(q);
while(!que.empty())
{
q=que.front();que.pop();
if(map[q.x][q.y]=='a')
{
res=q.s;
return;
}
if(map[q.x][q.y]=='x')
{
++q.s;
map[q.x][q.y]='.';
que.push(q);
}
else
{
for(int i=0;i<4;i++)
{
p.x=q.x+jump[i][0];
p.y=q.y+jump[i][1];
p.s=q.s+1;
if(is_b(p)) continue;
f[p.x][p.y]=1;
que.push(p);
}
}
}
}
int main ()
{
//freopen("j.txt","r",stdin);
while(cin>>n>>m)
{
init();
bfs();
if(res!=-1) cout<<res<<endl;
else cout<<"Poor ANGEL has to stay in the prison all his life."<<endl;
}
return 0;
}
最后
以上就是魔幻板凳为你收集整理的Rescue(简单搜索题)的全部内容,希望文章能够帮你解决Rescue(简单搜索题)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复