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. UESTC_酱神的旅行 2015 UESTC Training for Dynamic Programming<Problem M>

    M - 酱神的旅行 Time Limit: 3000/1000MS (Java/Others)     Memory Limit: 65535/65535KB (Java/Others) Submit ...

  2. sqlite数据库方言配置

    1. application.properties配置sqlite数据库 spring.datasource.url = jdbc:sqlite:C:/test/sqlite/DB/sqlite.db ...

  3. Handshakes(思维) 2016(暴力)

    Handshakes Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Sta ...

  4. DM6437 C64X+ EDMA 疑惑总结记录

    总结一下DM6437中的EDMA的使用出现的问题,方便以后再开发定位问题. 1.EDMA Link 和 Chain的区别 link实现了DMA的自动重加载(非静态模式),需要两个param chain ...

  5. react-native 环境配置及hello world

    一.前言 最近手头的工作繁多,有研究性的项目和系统研发,正好遇到同事离职,接手了框架的UI组件,不仅需要维护和填坑,还需要开发新的功能组件.因为身在H5-Hybird的框架部门,最近团队开始尝试使用R ...

  6. stagefright框架(三)-选择Video Decode

    在<Stagefright (1) – Video Playback的流程>中,我们并没有详述Stagefright是如何根据影片档的类型来选择适合的video decoder,现在,就让 ...

  7. C#中“@”的作用和用法

    “@”在看别人程序的时候偶尔看到,总结了一下两个用途 1. 不常用,也不推介用的用法. @关键字 可以作为标识符来使用,说白了,就是讲关键字变成非关键字. 2.逐字字符串字面量,以@开头,后面是由引导 ...

  8. C#.NET面向对象(语法点)

    一.继承 C#中继承的规则 1:继承是可传递的 A:B   B:C 2:派生类应当是对基类的扩展.派生类可以添加新的成员,但不能除去已经继承的成员的定义. 3:构造函数和析构函数不能被继承 4:如果派 ...

  9. 杭电OJ—— 1084 What Is Your Grade?

    What Is Your Grade? Problem Description “Point, point, life of student!” This is a ballad(歌谣)well kn ...

  10. mysql中,执行delete语句时出现Lock wait timeout exceeded问题

    问题描述: 当我插入一条记录时,在调用save方法的时候出现了异常(记录重复了),导致了后面的commit语句不能执行了.这时我在数据库中删除重复记录时发现该表已经被锁上了.即出现错误.但过了一会再次 ...