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数组记录前驱,最后输出就可以了. 对于状态的记录,一般都用哈希来存,但因为这道题比较特殊,它是一个排列,所以我们可 ...
随机推荐
- hdu 4649 Professor Tian 多校联合训练的题
这题起初没读懂题意,悲剧啊,然后看了题解写完就AC了 题意是给一个N,然后给N+1个整数 接着给N个操作符(只有三种操作 即 或 ,与 ,和异或 | & ^ )这样依次把操作符插入整 ...
- poj 3301 Texas Trip(几何+三分)
Description After a day trip with his friend Dick, Harry noticed a strange pattern of tiny holes in ...
- 【Java面试】基础知识篇
[Java面试]基础知识篇 Java基础知识总结,主要包括数据类型,string类,集合,线程,时间,正则,流,jdk5--8各个版本的新特性,等等.不足的地方,欢迎大家补充.源码分享见个人公告.Ja ...
- 【gcd+数学证明】【HDU1722】 CAKE
Cake Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submi ...
- Android显示系统设计框架介绍
1. Linux内核提供了统一的framebuffer显示驱动,设备节点/dev/graphics/fb*或者/dev/fb*,以fb0表示第一个显示屏,当前实现中只用到了一个显示屏. 2. Andr ...
- JQ 无刷新评论
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- 在T-SQL语句中访问远程数据库(openrowset/opendatasource/openquery)
1.启用Ad Hoc Distributed Queries 在使用openrowset/opendatasource前搜先要启用Ad Hoc Distributed Queries服务,因为这个服务 ...
- L - 辗转相除法(第二季水)
Description The least common multiple (LCM) of a set of positive integers is the smallest positive i ...
- C++程序设计实践指导1.9统计与替换字符串中的关键字改写要求实现
改写要求1:将字符数组str改为字符指针p,动态开辟存储空间 改写要求2:增加统计关键字个数的函数void CountKeyWords() 改写要求3: 增加替换函数void FindKeyWords ...
- MFC CSplitterWnd的用法
用MFC开发一个软件界面中需要拆分多个试图窗口时,使用CSplitterWnd类 CSplitterWnd类主要用在创建一个拆分试图窗口.通常嵌入在框架窗口中(CMainFrame) 创建步骤: 1 ...