Nightmare HDU1072
非常标准的BFS
第一次写错了很多
1、到达4时设置为墙就好了 避免了死循环
2、不用开d数组 在结构体里面就行了
3、结构体初始化函数的写法: Node(int x=0,int y=0,int oil=0):x(x),y(y),oil(oil){}
4、bfs的FOR里面的判断条件可以写的很清晰!就判断可以的 不可以的直接不处理!
#include<bits/stdc++.h>
using namespace std;
int sx,sy,ex,ey;
int d[][],a[][],d2[][];
bool f[][];
int n,m;
struct aa
{
int x;
int y;
int oil;
aa(int x=,int y=,int oil=):x(x),y(y),oil(oil){}
}; void bfs()
{ const int dr[]={-,,,};
const int dc[]={,,,-}; queue<aa>q;
memset(d,-,sizeof(d)); memset(f,true,sizeof(f));
aa u(sx,sy,);d[sx][sy]=;
q.push(u);
// printf("u:%d %d %d\n",u.x,u.y,u.oil);
while(!q.empty())
{ aa u=q.front();q.pop(); if(u.x==ex&&u.y==ey) {printf("%d\n",d[ex][ey]);return;}
for(int i=;i<=;i++)
{
aa v(u.x+dr[i],u.y+dc[i],u.oil-);
d[v.x][v.y]=d[u.x][u.y]+; if(v.x<||v.x>n||v.y<||v.y>m) continue ;
if(v.oil==)continue ;
if(a[v.x][v.y]==){ v.oil=; a[v.x][v.y]=; q.push(v); }
if(a[v.x][v.y]!=)
{
//printf("v:%d %d %d\n",v.x,v.y,v.oil);
q.push(v);} } } printf("-1\n");
} int main()
{
int cas;cin>>cas;
while(cas--)
{ cin>>n>>m;
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
{
scanf("%d",&a[i][j]);
if(a[i][j]==){sx=i;sy=j;}
if(a[i][j]==){ex=i;ey=j;}
}
bfs(); } return ;
}
第二次:简洁了许多
#include<bits/stdc++.h>
using namespace std; int world[][];int sx,sy,ex,ey;int n,m; struct node
{
int x,y,d,oil; node(int x=,int y=,int d=,int oil=):x(x),y(y),d(d),oil(oil){}
}; void bfs()
{
int dx[]={,,,-};
int dy[]={,,-,}; node u(sx,sy,,);
queue<node>q;
q.push(u); while(!q.empty())
{
node u=q.front();q.pop();
if(u.x==ex&&u.y==ey){printf("%d\n",u.d);return;} for(int i=;i<;i++)
{
node v(u.x+dx[i],u.y+dy[i],u.d+,u.oil-);
if(v.x>=&&v.x<=n&&v.y>=&&v.y<=m&&v.oil)
{
if(world[v.x][v.y]==){v.oil=;world[v.x][v.y]=;q.push(v);} else if(world[v.x][v.y]>) q.push(v);
}
}
}
printf("-1\n");
} int main()
{
int cas;cin>>cas;
while(cas--)
{
cin>>n>>m;
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
{scanf("%d",&world[i][j]);
if(world[i][j]==){sx=i;sy=j;}
if(world[i][j]==){ex=i;ey=j;} } bfs(); } return ;
}
大神的简洁代码:
#include <iostream>
#include <algorithm>
#include <queue>
#include <memory.h>
#include <stdio.h>
using namespace std;
#define Size 8
/*
这题目可以重复道路.只需要把控制炸弹的地方使用后,变成墙壁即可.
*/
struct Node
{
int x;
int y;
int time;//time代表已用的时间.
int rest;//rest代表剩余的时间.
//按照时间从高到低排列.
bool operator < (Node a) const
{
return this->time > a.time;
}
}; int world[Size][Size];
int n, m;
int temp;
int dir[][] = { { , }, { , }, { -, }, { , - } };
int sx, sy;
int rx, ry;
/*
0代表墙壁.1代表正常路.2代表起点.3代表终点.4代表炸弹控制器.
*/
int bfs()
{
priority_queue<Node> temp;
Node now, next, s;
s.x = sx;
s.y = sy;
s.time = ;
s.rest = ;
temp.push(s); while (!temp.empty())
{
now = temp.top();
temp.pop(); if (now.x == rx && now.y == ry && now.rest > )
{
return now.time;
}
//减枝.当剩余时间为1时.还没找到出口,说明到不了了.
if (now.rest == )
continue; for (int i = ; i < ; ++i)
{
next.x = now.x + dir[i][];
next.y = now.y + dir[i][];
next.time = now.time + ;
next.rest = now.rest - ;
//判断位置是否合理.
if (next.x >= && next.y >= && next.x < n && next.y < m && world[next.x][next.y] != && next.rest >= )
{
//如果他到了炸弹这里.
if (world[next.x][next.y] == )
{
next.rest = ;
//改为墙壁即可.
world[next.x][next.y] = ;
}
temp.push(next);
}
}
}
return -;
} int main()
{
int t;
scanf("%d", &t);
for (int i = ; i < t; ++i)
{
scanf("%d%d", &n,&m);
memset(world, , sizeof(world));
for (int j = ; j < n; ++j)
{
for (int k = ; k < m; ++k)
{
scanf("%d", &temp);
//初始位置.
if (temp == )
{
sx = j;
sy = k;
}
//目标位置.
else if (temp == )
{
rx = j;
ry = k;
}
world[j][k] = temp;
}
}
printf("%d\n", bfs());
} return ;
}
Nightmare HDU1072的更多相关文章
- Nightmare(DFS)
Nightmare hdu1072 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Oth ...
- HDU-1072 Nightmare (bfs+贪心)
Nightmare Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other) Total Sub ...
- hdu1072(Nightmare)bfs
Nightmare Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total ...
- HDU1072 Nightmare(BFS) 2016-07-24 14:02 40人阅读 评论(0) 收藏
Nightmare Problem Description Ignatius had a nightmare last night. He found himself in a labyrinth w ...
- HDU1072:Nightmare [DFS]
题目链接:Nightmare 题意: 给出一张n*m的图,0代表墙,1代表可以走,2代表起始点,3代表终点,4代表炸弹重置点 问是否能从起点到达终点 分析: 一道很好的DFS题目,炸弹重置点必然最多走 ...
- HDU1072:Nightmare
传送门 题意 给出一张n*m的图 0.墙 1.可走之路 2.起始点 3.终点 4.时间重置点 问是否能到达终点 分析 我的训练专题第一题,一开始我设个vis数组记录,然后写炸,不能处理重置点根vis的 ...
- HDU 1072 Nightmare
Description Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on ...
- Nightmare基于phantomjs的自动化测试套件
今天将介绍一款自动化测试套件名叫nightmare,他是一个基于phantomjs的测试框架,一个基于phantomjs之上为测试应用封装的一套high level API.其API以goto, re ...
- POJ 1984 Navigation Nightmare 带全并查集
Navigation Nightmare Description Farmer John's pastoral neighborhood has N farms (2 <= N <= ...
随机推荐
- u-boot移植(九)---代码修改---NAND
一.NAND原理 NAND 无地址空间,地址和数据的发送都依赖于LDATA[0:7]这一串数据总线. 不看随机页编程,看到从高位到低位的页,总共分为64个页面,每个页的组成是2K + 64 个byt ...
- android 加载图片
package mydemo.mycom.demo2; import android.graphics.Bitmap; import android.graphics.BitmapFactory; i ...
- [C++]Linux之Ubuntu下编译C程序出现错误:“ stray ‘\302'或者'\240' in program”的解决方案
参考文献:[error: stray ‘\240’ in program或 error: stray ‘\302’ in program](http://blog.csdn.net/u01299585 ...
- mysql案例 ~ 主从复制延迟处理(3)
一 简介:今天咱们来汇总下如何避免主从延迟 二 方案: 1 集群硬件配置统一,磁盘组更好(SSD最佳),更大的内存 2 linux系统+mysql的配置参数已经优化 3 mysql从库没有任何慢语句进 ...
- android logger 日志工具
https://github.com/orhanobut/logger 基础使用:https://blog.csdn.net/github_33304260/article/details/54799 ...
- Android:XML简介 & 解析方式对比(DOM、SAX、PULL)
目录 示意图 1. 定义 XML,即 extensible Markup Language ,是一种数据标记语言 & 传输格式 2. 作用 对数据进行标记(结构化数据).存储 & ...
- shiroWeb项目-记住我(自动登陆实现)(十五)
用户登陆选择“自动登陆”本次登陆成功会向cookie写身份信息,下次登陆从cookie中取出身份信息实现自动登陆. 用户身份实现java.io.Serializable接口便于反序列化 package ...
- Struts S2-052漏洞利用
昨天在FreeBuf上看到[9月6日更新]漏洞预警 | 高危Struts REST插件远程代码执行漏洞(S2-052) 然而一直复现不了,今天又试了下竟然成功了. 由于水表查的较严,就不冒险搞别人的服 ...
- DataTables 1.10.x与1.9.x参数名对照表
Datatables 1.10.x在命名上与1.9.x的有区别,新版的使用的是驼峰的命名规则,而之前的是采用匈牙利命名规则 当然,这些变化都是向下兼容的,你可以继续使用旧版本的api方法的参数和名称. ...
- maven配置文件setting.xml
1.Maven本地仓库<localRepository>D:\DevTools\maven_Analytics\mavenrepo</localRepository> 2.网络 ...