概述
#include<iostream>
#include<queue>
using namespace std;
char maze[201][201];//迷宫
const int pmove[4][2]={{0,1},{0,-1},{-1,0},{1,0}};//移动
int n;//多少行
int m;//多少列
int sx,sy,ex,ey;
int prison();
struct Node
{
friend bool operator < (Node a,Node b)
{
return a.step>b.step;
}
int x,y,step;
};
int main()
{
int i,j,result;
while(cin>>n>>m)
{
for(i=0;i<n;i++)
for(j=0;j<m;j++)
{
cin>>maze[i][j];
if(maze[i][j]=='r')
{
sx=j;
sy=i;
maze[i][j]='#';
continue;
}
if(maze[i][j]=='a')
{
ex=j;
ey=i;
continue;
}
}
result=prison();
if(result)
cout<<result<<endl;
else
cout<<"Poor ANGEL has to stay in the prison all his life."<<endl;
}
return 0;
}
int prison()
{
priority_queue<Node> que;
Node now,temp;
int v;
now.x=sx;
now.y=sy;
now.step=0;
que.push(now);
while(!que.empty())
{
temp=que.top();
que.pop();
for(v=0;v<4;v++)
{
now.x=temp.x+pmove[v][0];
now.y=temp.y+pmove[v][1];
if(now.x==ex&&now.y==ey)
return temp.step+1;
if(now.x<0||now.y<0||now.x>m-1||now.y>n-1)
continue;
if(maze[now.y][now.x]!='#')
{
if(maze[now.y][now.x]=='.')
now.step=temp.step+1;
else
now.step=temp.step+2;
que.push(now);
maze[now.y][now.x]='#';
}
}
}
return 0;
}
最后
以上就是默默钢笔为你收集整理的zoj1649-Rescue(priority_queue)的全部内容,希望文章能够帮你解决zoj1649-Rescue(priority_queue)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复