(BFS)hdoj1242-Rescue

题目地址

初学BFS,第一次用BFS做题。题目就是一个基本的BFS模型,需要稍加注意的是遇到警卫时间要+1,以及最后比的是最短的时间而不是步数。

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<queue>
 4 #define s 205
 5 #define INF 100000
 6 using namespace std;
 7 struct lo//建立结构体,存储点坐标和某种方法走到这里话费的步数和时间
 8 {
 9     int x,y,step,time;
10 };
11 queue<lo> q;//建立队列,存放结点
12 int mintime[s][s],dir[4][2]={{0,1},{0,-1},{-1,0},{1,0}},m,n,si,sj,ei,ej;//si、sj存储起点,mintime存储到某点最短时间,初始化为INF
13 char tem[s][s];//存储地图
14 int BFS(lo x)
15 {
16     int i;
17     q.push(x);
18     lo hd;
19     while(!q.empty())//为找到最优解,需要等到队列为空才能停止
20     {
21         hd=q.front();//拿出队列头,从队列头的结点开始继续走。
22         q.pop();
23         for(i=0;i<4;i++)
24         {
25             int x=hd.x+dir[i][0],y=hd.y+dir[i][1];
26             if(x>=0&&x<m&&y>=0&&y<n&&tem[x][y]!=‘#‘)//如果朝某个方向走一步可行,那么就判断这样是否是最短。若是,则压入
27             {
28                 lo t;
29                 t.x=x;t.y=y;t.time=hd.time+1;t.step=hd.step+1;
30                 if(tem[x][y]==‘x‘)  t.time++;//如果是警卫,时间要+1
31                 if(t.time<mintime[x][y])//或许有走到这里时间更短的方法,但既然每种都放入了队列,后来都会从这里继续走
32                 {mintime[x][y]=t.time;
33                 q.push(t);
34                 }
35             }
36         }
37     }
38     return mintime[ei][ej];//返回答案
39 }
40 int main()
41 {
42     while(~scanf("%d%d",&m,&n))
43     {
44         memset(tem,0,sizeof(tem));
45         int i,j,an;
46         for(i=0;i<m;i++)
47         {
48             scanf("%s",tem[i]);
49         }
50         for(i=0;i<m;i++)
51         {
52             for(j=0;j<n;j++)
53             {
54                 mintime[i][j]=INF;//初始化时间都为INF
55                 if(tem[i][j]==‘a‘)
56                 {
57                     ei=i;ej=j;
58                 }
59                 else if(tem[i][j]==‘r‘)
60                 {
61                     si=i;sj=j;
62                 }
63             }
64         }
65         lo t;
66         t.x=si;t.y=sj;t.step=0;t.time=0;mintime[si][sj]=0;
67         an=BFS(t);
68         if(an<INF)
69             printf("%d\n",an);
70         else
71             printf("Poor ANGEL has to stay in the prison all his life.\n");
72     }
73     return 0;
74 }
时间: 2024-11-05 18:47:33

(BFS)hdoj1242-Rescue的相关文章

hdu 1026 Ignatius and the Princess I(bfs)

Ignatius and the Princess I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 16269    Accepted Submission(s): 5164 Special Judge Problem Description The Princess has been abducted by the BEelzeb

pots(BFS)

D - Pots Time Limit:1000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Status Description You are given two pots, having the volume of A and B liters respectively. The following operations can be performed: Input On the first and

USACO抓牛catchcow (bfs)

这题是黄巨大出的比赛题. http://poj.org/problem?id=3278 Description Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤

hdu 1728 逃离迷宫 (BFS)

逃离迷宫 Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 14376    Accepted Submission(s): 3458 Problem Description 给定一个m × n (m行, n列)的迷宫,迷宫中有两个位置,gloria想从迷宫的一个位置走到另外一个位置,当然迷宫中有些地方是空地,gloria可以穿越,有些地方

牛汇(BFS)入金具体流程(图文指导)

牛汇开户流程:bfsforex牛汇入金教程 所谓入金,也就是充值的意思,必须充钱到平台才能进行外汇交易.首先,我们先登录bfsforex牛汇官方网站,在交易办公室功能区域下面,点击账户入金: 为您提供中国各大银行的网银支付解决方案,支持人民币支付,和信用卡入金,入金是实时到账的. 牛汇(BFS)入金具体流程(图文指导),布布扣,bubuko.com

URAL 1930 Ivan&#39;s Car(BFS)

Ivan's Car Time limit: 1.5 secondMemory limit: 64 MB The world is in danger! Awful earthquakes are detected all over the world. Houses are destroyed, rivers overflow the banks, it is almost impossible to move from one city to another. Some roads are

【判重+广搜(bfs)】魔板

判重+广搜(bfs)]魔板 Time Limit: 1000MS Memory Limit: 32768KB Special Judge 有一个两行四列的魔板,每个格子里有一个1到8的数字(数字唯一),现在我们可以对魔板进行以下操作: 1.交换两行的数字. 2.将第一列移到第二列,第二列到第三列,第三列到第四列,第四列到第一列. 3.将中间四个数顺时针转一次. 现给你初始状态,我末状态请你用最小的步数将它从初始状态变到末状态. 输入: 前两行,每行4个数表示初状态. 后两行,每行4个数表示末状态

[LeetCode] Binary Tree Zigzag Level Order Traversal(bfs)

Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and alternate between). For example: Given binary tree {3,9,20,#,#,15,7}, 3 / 9 20 / 15 7 return its zig

USACO Mother&amp;#39;s Milk(bfs)

a=9MvljJDNdls&S=milk3">题目请点我 题解: 水杯倒水的问题非常经典,套路也是一样的,bfs找出全部状态. 这道题的关键在于每次都应该进行六次的倒水尝试,细心一点.PS:三维数组表示状态真的非常方便. 代码实现: /* ID: eashion LANG: C++ TASK: milk3 */ #include <iostream> #include <cstdio> #include <cstdlib> #include &l

[C++]广度优先搜索(BFS)(附例题)

广度优先搜索(BFS)(附例题) 问题产生: Isenbaev是国外的一个大牛. 现在有许多人要参加ACM ICPC. 一共有n个组,每组3个人.同组的3个人都是队友. 大家都想知道自己与大牛的最小距离是多少. 大牛与自己的最小距离当然是0.大牛的队友和大牛的最小距离是1.大牛的队友的队友和大牛的最小距离是2--以此类推. 如果实在和大牛没有关系的只好输出undefined了. 第一行读入n.表示有n个组.1 ≤ n ≤ 100 接下来n行,每行有3个名字,名字之间用空格隔开.每个名字的开头都是