博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU-1242-Rescue
阅读量:5209 次
发布时间:2019-06-14

本文共 1155 字,大约阅读时间需要 3 分钟。

题目链接

 

水题,bfs

代码

#include<stdio.h>

#include<string.h>
#include<iostream>
#include<queue>
using namespace std;

int n,m,success;

int stx,sty,ex,ey;
char map[210][210];
int dx[4]={0,1,0,-1};
int dy[4]={-1,0,1,0};

struct node

{
int x,y,g,cnt;
};

queue<node> q;

void bfs()

{
node s,e;
while(q.size())
q.pop();
s.x=stx; s.y=sty; s.cnt=0; s.g=0;
q.push(s);
while(q.size())
{
s=q.front();
q.pop();
if(s.x==ex&&s.y==ey)
{
success=1;
printf("%d\n",s.cnt);
return ;
}
for(int i=0;i<4;i++)
{
e.x=s.x+dx[i]; e.y=s.y+dy[i];
if(e.x>=0&&e.x<n&&e.y>=0&&e.y<m&&map[e.x][e.y]!='#')
{
if(s.g==0)
{
if(map[e.x][e.y]=='x')
{
e.g=1;
e.cnt=s.cnt+1;
q.push(e);
map[e.x][e.y]='#';
}
else
{
e.g=0;
e.cnt=s.cnt+1;
q.push(e);
map[e.x][e.y]='#';
}
}
else
{
s.g=s.g-1;
s.cnt=s.cnt+1;
q.push(s);
}
}
}
}
}

int main(void)

{
int i,j;
while(scanf("%d%d",&n,&m)==2)
{
getchar();
for(i=0;i<n;i++)
{
for(j=0;j<m;j++)
{
scanf("%c",&map[i][j]);
if(map[i][j]=='r')
{
stx=i; sty=j;
}
else if(map[i][j]=='a')
{
ex=i; ey=j;
}
}
getchar();
}
success=0;
bfs();
if(!success)
printf("Poor ANGEL has to stay in the prison all his life.\n");
}
return 0;
}

 

转载于:https://www.cnblogs.com/liudehao/p/4138137.html

你可能感兴趣的文章
Linux operating system (Ubuntu) 学习-1
查看>>
Python字典实现分析
查看>>
jenkins+testNG
查看>>
Java自定义范型的应用技巧
查看>>
[洛谷1485] 火枪打怪
查看>>
白话经典算法系列之六 快速排序 快速搞定
查看>>
错了:用流量能够放肆,有wifi则要节制
查看>>
https://zhidao.baidu.com/question/362784520674844572.html
查看>>
【MFC 学习笔记】CFile读写文件
查看>>
PAT B1018.锤子剪刀布(20)
查看>>
Yii2.0 集成使用富头像上传编辑器
查看>>
Extjs控件之 grid打印功能
查看>>
枚举类型(不常用)递归
查看>>
ETL
查看>>
Tomcat源码分析(六)--日志记录器和国际化
查看>>
今天把csdn的博客搬家到博客园
查看>>
D3.js+Es6+webpack构建人物关系图(力导向图),动态更新数据,点击增加节点,拖拽增加连线......
查看>>
基于网络的 Red Hat 无人值守安装
查看>>
Mybatis第六篇【配置文件和映射文件再解读、占位符、主键生成与获取、Mapper代理】...
查看>>
MySQL学习笔记(二):MySQL数据类型汇总及选择参考
查看>>