杭电 1242 Rescue

题目大意:

HDOJ 1242 Rescue

解题思路:

BFS( 广度优先搜索)

易错点

1.天使可能有多个朋友,所以不能从朋友的位置开始着天使,只能是从天使找离他最近的朋友

2.题目要求的是找到一个用时最少的朋友,而不是步数最少

代码实现

#include <iostream>
#include <stdio.h>
#include <string.h>
#include <queue>
#define N 201
using namespace std;            //优先队列解决,广度优先
struct Persion
{
    int x,y;
    int time;
    friend bool operator < (const Persion &a,const Persion &b)
    {
        return a.time>b.time;         //">" 返回队列中较小的元素;"< " 则返回队列中较大的元素
    } 
};
int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};
char map[N][N];
int visited[N][N];
int m,n;
int BFS(int x,int y)
{
    priority_queue <Persion>q;
    Persion current,next;
    memset(visited,0,sizeof(visited));
    current.x=x;
    current.y=y;
    current.time=0;
    visited[current.x][current.y]=1;
    q.push(current);
 
    while(!q.empty())
    {
 
        current=q.top();
        q.pop();
        for(int i=0;i<4;i++)
        {
            next.x=current.x+dir[i][0];
            next.y=current.y+dir[i][1];
 
            if(next.x>=0&&next.x<n&&next.y>=0&&next.y<m&&
                 map[next.x[next.y]!='#'&&!visited[next.x][next.y])
           {
             if(map[next.x][next.y]=='r')
                  return current.time+1;
             if(map[next.x][next.y]=='x')
                    next.time=current.time+2;
             else
                    next.time=current.time+1;
             visited[next.x][next.y]=1;
             q.push(next);
          }
        }
    }
    return -1;
} 
int main()
{
    int i,j;
    Persion angle;
    while(cin>>n>>m&&(m||n))
    {
        for(i=0;i<n;i++)
            for(j=0;j<m;j++)
            {
                cin>>map[i][j];
                if(map[i][j]=='a')
                {
                    angle.x=i;
                    angle.y=j;
                }
            }
         int time=BFS(angle.x,angle.y);
         if(time==-1)
            cout<<"Poor ANGEL has to stay in the prison all his life."<<endl;
         else
            cout<<time<<endl;
    }
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值