Walking Ant(一道有意思的蚂蚁游戏,bfs)
Walking Ant
Time Limit: 2 Seconds Memory Limit: 65536 KB
Ants are quite diligent. They sometimes build their nests beneath flagstones.
Here, an ant is walking in a rectangular area tiled with square flagstones, seeking the only hole leading to her nest.
The ant takes exactly one second to move from one flagstone to another. That is, if the ant is on the flagstone with coordinates (x,y) at time t, she will be on one of the five flagstones with the following coordinates at time t+1:
(x, y), (x+1, y), (x-1, y), (x, y+1), (x, y-1).
The ant cannot go out of the rectangular area. The ant can visit the same flagstone more than once.
Insects are easy to starve. The ant has to go back to her nest without starving. Physical strength of the ant is expressed by the unit "HP". Initially, the ant has the strength of 6 HP. Every second, she loses 1 HP. When the ant arrives at a flagstone with some food on it, she eats a small piece of the food there, and recovers her strength to the maximum value, i.e., 6 HP, without taking any time. The food is plenty enough, and she can eat it as many times as she wants.
When the ant's strength gets down to 0 HP, she dies and will not move anymore. If the ant's strength gets down to 0 HP at the moment she moves to a flagstone, she does not effectively reach the flagstone: even if some food is on it, she cannot eat it; even if the hole is on that stone, she has to die at the entrance of her home.
If there is a puddle on a flagstone, the ant cannot move there.
Your job is to write a program which computes the minimum possible time for the ant to reach the hole with positive strength from her start position, if ever possible.
Input
The input consists of multiple maps, each representing the size and the arrangement of the rectangular area. A map is given in the following format.
w h
d11 d12 d13 ... d1w
d21 d22 d23 ... d2w
...
dh1 dh2 dh3 ... dhw
The integers w and h are the numbers of flagstones in the x- and y-directions, respectively. w and h are less than or equal to 8. The integer dyx represents the state of the flagstone with coordinates (x, y) as follows.
0: There is a puddle on the flagstone, and the ant cannot move there.
1, 2: Nothing exists on the flagstone, and the ant can move there. `2' indicates where the ant initially stands.
3: The hole to the nest is on the flagstone.
4: Some food is on the flagstone.
There is one and only one flagstone with a hole. Not more than five flagstones have food on them.
The end of the input is indicated by a line with two zeros.
Integer numbers in an input line are separated by at least one space character.
Output
For each map in the input, your program should output one line containing one integer representing the minimum time. If the ant cannot return to her nest, your program should output -1 instead of the minimum time.
Sample Input
3 3
2 1 1
1 1 0
1 1 3
8 4
2 1 1 0 1 1 1 0
1 0 4 1 1 0 4 1
1 0 0 0 0 0 0 1
1 1 1 4 1 1 1 3
8 5
1 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
8 7
1 2 1 1 1 1 1 1
1 1 1 1 1 1 1 4
1 1 1 1 1 1 1 1
1 1 1 1 4 1 1 1
4 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 3
8 8
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1
1 4 4 1 1 1 1 1
1 4 4 2 1 1 0 0
1 1 0 0 0 0 0 3
1 1 0 4 1 1 1 1
1 1 1 1 1 1 1 1
8 8
1 1 1 1 1 1 1 1
1 1 2 1 1 1 1 1
1 1 4 4 4 1 1 1
1 1 1 4 4 1 0 1
1 1 1 1 1 1 0 1
1 1 1 1 1 1 0 3
1 1 1 1 1 1 1 1
1 1 1 1 1 1 1 1
0 0
Sample Output
4
-1
13
20
-1
-1
题解:醉了,写了一下午,各种问题。。。。
代码一:
#include<stdio.h>
#include<queue>
#include<string.h>
using namespace std;
struct Node{
int nx,ny,str;
};
int disx[]={,,,-};
int disy[]={,,-,};
//int visit[9][9];
int hp[][];//定义一个hp数组,主要是为了记录上一次到这个点的能量,
Node a,b;
int map[][],t,w,h,flot,time;
void bfs(int x,int y){
queue<Node>dl;
a.nx=x;a.ny=y;a.str=;
dl.push(a);
//visit[a.nx][a.ny]=1;
hp[x][y]=;
while(!dl.empty()){
t=dl.size();
time++;
while(t--){
a=dl.front();
dl.pop();
if(a.str==)continue;
for(int i=;i<;i++){
b.nx=a.nx+disx[i];
b.ny=a.ny+disy[i];
//b.time=a.time+1;
if(b.nx<||b.ny<||b.nx>=h||b.ny>=w)continue;
if(map[b.nx][b.ny]==)continue;
if(a.str-<hp[b.nx][b.ny])continue;//这句主要是为了比较上一次到这个位置的血量 ,如果上一次到这个点的能量高,就要这个点了;
if(a.str-==)continue;
if(map[b.nx][b.ny]==){
flot=;
//time=b.time;
return;
}
if(map[b.nx][b.ny]==){
//visit[b.nx][b.ny]=1;
b.str=;
hp[b.nx][b.ny]=b.str;
dl.push(b);
}
if(map[b.nx][b.ny]==){
b.str=a.str-;
hp[b.nx][b.ny]=b.str;dl.push(b);
}
}
}
}
}
int main(){int x,y,sx,sy;
while(~scanf("%d%d",&w,&h),w||h){flot=;time=;
//memset(visit,0,sizeof(visit));
memset(hp,,sizeof(hp));
for(x=;x<h;x++){
for(y=;y<w;y++){
scanf("%d",&map[x][y]);
if(map[x][y]==)sx=x,sy=y;
}
}
bfs(sx,sy);
// printf("%d\n",time);
if(flot)printf("%d\n",time);
else puts("-1");
}
return ;
}
代码二:
#include<stdio.h>
#include<queue>
#include<string.h>
using namespace std;
struct Node{
int nx,ny,str,time;
};
int disx[]={,,,-};
int disy[]={,,-,};
//int visit[9][9];
int hp[][];
Node a,b;
int map[][],t,w,h,flot,time;
void bfs(int x,int y){
queue<Node>dl;
a.nx=x;a.ny=y;a.str=;a.time=;
dl.push(a);
//visit[a.nx][a.ny]=1;
hp[x][y]=;
while(!dl.empty()){
a=dl.front();
dl.pop();
if(a.str==)continue;
for(int i=;i<;i++){
b.nx=a.nx+disx[i];
b.ny=a.ny+disy[i];
b.time=a.time+;
if(b.nx<||b.ny<||b.nx>=h||b.ny>=w)continue;
if(map[b.nx][b.ny]==)continue;
if(a.str-<hp[b.nx][b.ny])continue;
if(a.str-==)continue;
if(map[b.nx][b.ny]==){
flot=;
time=b.time;
return;
}
if(map[b.nx][b.ny]==){
//visit[b.nx][b.ny]=1;
b.str=;
hp[b.nx][b.ny]=b.str;
dl.push(b);
}
if(map[b.nx][b.ny]==){
b.str=a.str-;
hp[b.nx][b.ny]=b.str;dl.push(b);
}
}
}
}
int main(){int x,y,sx,sy;
while(~scanf("%d%d",&w,&h),w||h){flot=;time=;
//memset(visit,0,sizeof(visit));
memset(hp,,sizeof(hp));
for(x=;x<h;x++){
for(y=;y<w;y++){
scanf("%d",&map[x][y]);
if(map[x][y]==)sx=x,sy=y;
}
}
bfs(sx,sy);
// printf("%d\n",time);
if(flot)printf("%d\n",time);
else puts("-1");
}
return ;
}
感觉第一个比较省内存,好理解;
Walking Ant(一道有意思的蚂蚁游戏,bfs)的更多相关文章
- zoj 1671 Walking Ant【简单bfs】
Walking Ant Time Limit: 2 Seconds Memory Limit: 65536 KB Ants are quite diligent. They sometime ...
- Walking Ant(bfs)
Walking Ant Time Limit: 2 Seconds Memory Limit: 65536 KB Ants are quite diligent. They sometime ...
- zoj 1671 Walking Ant
Walking Ant Time Limit: 2 Seconds Memory Limit: 65536 KB Ants are quite diligent. They sometime ...
- 记录一道有意思的js题目
偶然机会,在codewars上面开始做题,遇到一道有意思的题目,记录一下: 题目是这样的: In this kata, you will write a function that returns t ...
- Problem: 棋盘小游戏(一道有意思的acm入门题
Problem Description 现有一个2行13列的棋盘,棋盘上的任意一个位置可以向他临近的8个位置移动.棋盘上的每一个位置的标号由一个大写的英文字母表示.现在给你一个移动的顺序,问你如何设置 ...
- 一道有意思的 CSS 面试题,FizzBuzz ~
FizzBuzz 是一道很有意思的题目.我们来看看题目: 如果遇见了 3 的倍数要说 Fizz,5 的倍数就说 Buzz,如果即是 3 的倍数又是 5 的倍数就说 FizzBuzz. 如果是在一些 ...
- 记一道经典树上Nim游戏
这道题首先是 Hanriver 提出来的,但是大家都不会做,今天看到了一道一模一样的题目 AT2667 题目大意是,每个人删掉一个不是整棵树的原树的子树,给定一个树问游戏状态. 首先,这是需要用到多个 ...
- 一道有意思的笔试题引发的对于new操作符的思考
楼主比较喜欢看一些很短但很有意思的题目,无意间又瞥到了一题,大家不妨可以一试.(原题链接猛戳这里) function Fn1() { this.name = 'peter'; return { nam ...
- [ZJOI2005]九数码游戏(BFS+hash)
Solution 这题的话直接上BFS就可以了,因为要输出方案,所以我们要开一个pre数组记录前驱,最后输出就可以了. 对于状态的记录,一般都用哈希来存,但因为这道题比较特殊,它是一个排列,所以我们可 ...
随机推荐
- Remove Duplicates from Sorted List II 解答
Question Given a sorted linked list, delete all nodes that have duplicate numbers, leaving only dist ...
- (转)Java 的swing.GroupLayout布局管理器的使用方法和实例
摘自http://www.cnblogs.com/lionden/archive/2012/12/11/grouplayout.html (转)Java 的swing.GroupLayout布局管理器 ...
- eclipse默认编码设置为utf-8
需要设置的几处地方为: Window->Preferences->General ->Content Type->Text->JSP 最下面设置为UTF-8 Window ...
- Kolor Neutralhazer v1.0.2 (照片雾气模糊去除过滤器)+破解RI
由于空气污染.阴霾几天越来越,根据照片始终是一个灰色,怎么做?有了这个插件.能够解除您的烦恼. Neutralhazer这是消除你的风景照片和雾气模糊的全景图的有效途径photoshop小工具. wa ...
- VLC各个Module模块之间共享变量的实现方法
在做VLC开发的时候,想使用一个模块访问另外一个模块的数据, 比如在网络模块得到了一些数据,想在其他模块得到这些数据进行处理,这时候就需要两个模块共享一些变量. 查看VLC的源码,发现VLC专门有va ...
- pl sql练习(2)
1.尽可能了解oracle的功能,因为很多业务逻辑oracle已经为我们做了,比如oracle已经预定义了大量的异常代码,我们不必要写自己的异常而增加代码的复杂度. 例如oracle定义了当找不到符合 ...
- W - stl 的 优先队列 Ⅲ
Description In a speech contest, when a contestant finishes his speech, the judges will then grade h ...
- HDU-1049
Description An inch worm is at the bottom of a well n inches deep. It has enough energy to climb u i ...
- ORACLE集合常用方法
集合方法pl/sql预定义了在varray 和嵌套表实例上进行调用的方法.这些方法能在集合上执行一定的功能. EXISTS 该函数返回集合中第一个元素的索引,如果集合为空,返回NULL Collect ...
- 滑动冲突的补充——Event的流程走向
一.之前分析的滑动冲突,并没有讲述event事件是如何分发到不同的控件 View的滑动冲突 现在分析一下滑动冲突event事件的流向 假设: 我们的一个事件为 点下——>左滑动一次——> ...