HDU-#1242 Rescue(BFS)

题目大意:解救天使,但天使有很多朋友,迷宫中也有守卫,求解救天使的最短路径长度,其中任何一个朋友解救到即可,遇到守卫就杀死,并且需要再花费一个时间。

解题思路:由于天使有很多朋友,数量未知,因此,将天使作为起点,对其朋友进行搜索。换需要注意一点的是遇到x的处理方法,可以在搜索过程中路径加1以后,再对该点进行判断,如该点为x,则再加一个长度。详见code。

题目来源:http://acm.hdu.edu.cn/showproblem.php?pid=1242

code:

#include 
#include 
#include 
#include 
using namespace std;

const int MAXN = 200+10;
char map[MAXN][MAXN];
int vis[MAXN][MAXN];
int n,m,sx,sy;
int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};

struct node{
    int x,y,step;
};

int BFS(){
    node t,s;
    queue q;
    s.x=sx;s.y=sy;
    s.step=0;
    q.push(s);
    vis[s.x][s.y]=1;
    while(!q.empty()){
        node temp =q.front();
        q.pop();
        if(map[temp.x][temp.y]=='r') return temp.step;  //找到朋友就返回长度
        for(int i=0;i<4;i++){
            t.x=temp.x+dir[i][0];
            t.y=temp.y+dir[i][1];
            t.step=temp.step+1;
            if(map[t.x][t.y]=='x') t.step++; //如果遇到x就再加一次
            if(t.x>=0 && t.x=0 && t.y


你可能感兴趣的:(HDU-#1242 Rescue(BFS))