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)的更多相关文章

  1. zoj 1671 Walking Ant【简单bfs】

    Walking Ant Time Limit: 2 Seconds      Memory Limit: 65536 KB Ants are quite diligent. They sometime ...

  2. Walking Ant(bfs)

    Walking Ant Time Limit: 2 Seconds      Memory Limit: 65536 KB Ants are quite diligent. They sometime ...

  3. zoj 1671 Walking Ant

    Walking Ant Time Limit: 2 Seconds      Memory Limit: 65536 KB Ants are quite diligent. They sometime ...

  4. 记录一道有意思的js题目

    偶然机会,在codewars上面开始做题,遇到一道有意思的题目,记录一下: 题目是这样的: In this kata, you will write a function that returns t ...

  5. Problem: 棋盘小游戏(一道有意思的acm入门题

    Problem Description 现有一个2行13列的棋盘,棋盘上的任意一个位置可以向他临近的8个位置移动.棋盘上的每一个位置的标号由一个大写的英文字母表示.现在给你一个移动的顺序,问你如何设置 ...

  6. 一道有意思的 CSS 面试题,FizzBu​​zz ~

    FizzBu​​zz 是一道很有意思的题目.我们来看看题目: 如果遇见了 3 的倍数要说 Fizz,5 的倍数就说 Buzz,如果即是 3 的倍数又是 5 的倍数就说 FizzBuzz. 如果是在一些 ...

  7. 记一道经典树上Nim游戏

    这道题首先是 Hanriver 提出来的,但是大家都不会做,今天看到了一道一模一样的题目 AT2667 题目大意是,每个人删掉一个不是整棵树的原树的子树,给定一个树问游戏状态. 首先,这是需要用到多个 ...

  8. 一道有意思的笔试题引发的对于new操作符的思考

    楼主比较喜欢看一些很短但很有意思的题目,无意间又瞥到了一题,大家不妨可以一试.(原题链接猛戳这里) function Fn1() { this.name = 'peter'; return { nam ...

  9. [ZJOI2005]九数码游戏(BFS+hash)

    Solution 这题的话直接上BFS就可以了,因为要输出方案,所以我们要开一个pre数组记录前驱,最后输出就可以了. 对于状态的记录,一般都用哈希来存,但因为这道题比较特殊,它是一个排列,所以我们可 ...

随机推荐

  1. Google map v3 using simple tool file google.map.util.js v 1.0

    /** * GOOGLE地图开发使用工具 * @author BOONYACHENGDU@GMAIL.COM * @date 2013-08-23 * @notice 地图容器的(div)z-inde ...

  2. Contains Duplicate 解答

    Question Given an array of integers, find if the array contains any duplicates. Your function should ...

  3. LeeCode-Pow(x, n)

    Implement pow(x, n). double myPow(double x, int n) { ) return 1.0; ) return 1.0/pow(x,-n); ); }

  4. Cocos2d-x v3.0正式版尝鲜体验【1】 环境搭建和新建项目

    Cocos2d-x v3.0在前天最终公布正式版了,等了大半年最终出来了.一直没去碰之前的3.0各种beta,rc版本号,就想等正式版出来再尝试. 昨天也參加了触控科技在成都举办的沙龙活动.看到作者王 ...

  5. 【降维解法:最大字段和->最大子矩阵和->最终版最大子长方体和】【UVA10755】Garbage Heap

    突然感觉刷完这一套专题后 码力有了质的飞跃,fighting 努力会有结果! 最大字段和是一个很经典的问题 O(n)算法 而对于最大子矩阵和 可以思考一个这样的想法 枚举上下边界i,j把i到j这一段的 ...

  6. Windows下配置sphinx+reStructuredText详解

    最近有朋友想在windows下做个人笔记,没有找到顺手的工具,问我有什么好的工具推荐.正好前两天在网上看到一款做文档的利器sphinx+reStructText,当时在ubuntu下搭了下环境试了试, ...

  7. 二、Mp3帧分析(标签帧)

    Mp3文件由帧组成,帧分成标签帧和数据帧,本文就Mp3文件的帧进行分析. 一.标签帧 MP3帧头中除了存储一些象private.copyright.original的简单音乐说明信息以外,没有考虑存放 ...

  8. 转:说说JSON和JSONP,也许你会豁然开朗,含jQuery用例

    说到AJAX就会不可避免的面临两个问题,第一个是AJAX以何种格式来交换数据?第二个是跨域的需求如何解决?这两个问题目前都有不同的解决方案,比如数据可以用自定义字符串或者用XML来描述,跨域可以通过服 ...

  9. Linux下重要日志文件及查看方式

    http://os.51cto.com/art/201108/282184_all.htm   1.Linux下重要日志文件介绍 /var/log/boot.log 该文件记录了系统在引导过程中发生的 ...

  10. SQL Server服务启动失败,错误代码:10048

    今天打开电脑后遇到了一个奇葩的问题,启动Sql Server服务时,出现如下图所示错误: