博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 1072 Nightmare(BFS)(注:不标记每个节点四方向累计4次剪枝)
阅读量:4139 次
发布时间:2019-05-25

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

Nightmare

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 8637 Accepted Submission(s): 4144
Problem Description
Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should get out of the labyrinth before the bomb explodes. The initial exploding time of the bomb is set to 6 minutes. To prevent the bomb from exploding by shake, Ignatius had to move slowly, that is to move from one area to the nearest area(that is, if Ignatius stands on (x,y) now, he could only on (x+1,y), (x-1,y), (x,y+1), or (x,y-1) in the next minute) takes him 1 minute. Some area in the labyrinth contains a Bomb-Reset-Equipment. They could reset the exploding time to 6 minutes.
Given the layout of the labyrinth and Ignatius' start position, please tell Ignatius whether he could get out of the labyrinth, if he could, output the minimum time that he has to use to find the exit of the labyrinth, else output -1.
Here are some rules:
1. We can assume the labyrinth is a 2 array.
2. Each minute, Ignatius could only get to one of the nearest area, and he should not walk out of the border, of course he could not walk on a wall, too.
3. If Ignatius get to the exit when the exploding time turns to 0, he can't get out of the labyrinth.
4. If Ignatius get to the area which contains Bomb-Rest-Equipment when the exploding time turns to 0, he can't use the equipment to reset the bomb.
5. A Bomb-Reset-Equipment can be used as many times as you wish, if it is needed, Ignatius can get to any areas in the labyrinth as many times as you wish.
6. The time to reset the exploding time can be ignore, in other words, if Ignatius get to an area which contain Bomb-Rest-Equipment, and the exploding time is larger than 0, the exploding time would be reset to 6.
Input
The input contains several test cases. The first line of the input is a single integer T which is the number of test cases. T test cases follow.
Each test case starts with two integers N and M(1<=N,Mm=8) which indicate the size of the labyrinth. Then N lines follow, each line contains M integers. The array indicates the layout of the labyrinth.
There are five integers which indicate the different type of area in the labyrinth:
0: The area is a wall, Ignatius should not walk on it.
1: The area contains nothing, Ignatius can walk on it.
2: Ignatius' start position, Ignatius starts his escape from this position.
3: The exit of the labyrinth, Ignatius' target position.
4: The area contains a Bomb-Reset-Equipment, Ignatius can delay the exploding time by walking to these areas.
Output
For each test case, if Ignatius can get out of the labyrinth, you should output the minimum time he needs, else you should just output -1.
Sample Input
33 32 1 11 1 01 1 34 82 1 1 0 1 1 1 01 0 4 1 1 0 4 11 0 0 0 0 0 0 11 1 1 4 1 1 1 35 81 2 1 1 1 1 1 4 1 0 0 0 1 0 0 1 1 4 1 0 1 1 0 1 1 0 0 0 0 3 0 1 1 1 4 1 1 1 1 1
Sample Output
4-113  
//BFS果然是求最小步数的 dfs就超 每个节点来回四方向进过 即累计4次就肯定不对 剪掉
//AC
#include
#include
#include
using namespace std;const int N=10;int map[N][N];bool ok;int n,m;int book[N][N];int step[4][2]={
{0,1},{1,0},{-1,0},{0,-1}};struct Node{ int x,y,step,bomb;}tmp,node;queue
q;int main(){ int t,i,j; scanf("%d",&t); while(t--){ ok=0; while(!q.empty()) q.pop(); scanf("%d%d",&n,&m); for(i=0;i
=6) continue; if(map[node.x][node.y]==3) { ok=1; break; } else if(map[node.x][node.y]==4) node.bomb=0; for(i=0;i<4;i++){ int a=node.x+step[i][0]; int b=node.y+step[i][1]; if(a<0||a>=n||b<0||b>=m||map[a][b]==0||book[node.x][node.y]>4) continue; tmp.x=a; tmp.y=b; tmp.step=node.step+1; tmp.bomb=node.bomb+1; book[a][b]++; q.push(tmp); } } if(ok) printf("%d\n",node.step); else printf("-1\n"); } return 0;}/*超时 #include
#include
using namespace std;const int N=10;int map[N][N];bool ok;int n,m,small;int book[N][N];int step[4][2]={ {0,1},{1,0},{-1,0},{0,-1}};void dfs(int x,int y,int sum,int bomb){ if(bomb>=6||sum>=small) return ; if(map[x][y]==3){ ok=1; if(sum
=n||b<0||b>=m||map[a][b]==0) continue; //book[a][b]++; dfs(a,b,sum+1,bomb+1); //book[a][b]--; }}int main(){ int t,i,j,bx,by; scanf("%d",&t); while(t--){ small=99999999; ok=0; scanf("%d%d",&n,&m); for(i=0;i

转载地址:http://aymvi.baihongyu.com/

你可能感兴趣的文章
C 语言 学习---ComboBox相关、简易“假”管理系统
查看>>
C 语言 学习---回调、时间定时更新程序
查看>>
C 语言 学习---复选框及列表框的使用
查看>>
第十一章 - 直接内存
查看>>
JDBC核心技术 - 上篇
查看>>
一篇搞懂Java反射机制
查看>>
Single Number II --出现一次的数(重)
查看>>
Palindrome Partitioning --回文切割 深搜(重重)
查看>>
对话周鸿袆:从程序员创业谈起
查看>>
Mysql中下划线问题
查看>>
Xcode 11 报错,提示libstdc++.6 缺失,解决方案
查看>>
idea的安装以及简单使用
查看>>
Windows mysql 安装
查看>>
python循环语句与C语言的区别
查看>>
vue 项目中图片选择路径位置static 或 assets区别
查看>>
vue项目打包后无法运行报错空白页面
查看>>
Vue 解决部署到服务器后或者build之后Element UI图标不显示问题(404错误)
查看>>
element-ui全局自定义主题
查看>>
facebook库runtime.js
查看>>
vue2.* 中 使用socket.io
查看>>