此题需要时间更少,控制时间很要,这个题目要多多看,

Ignatius and the Princess I

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 9910    Accepted Submission(s): 2959 Special Judge

Problem Description
The Princess has been abducted by the BEelzebub feng5166, our hero Ignatius has to rescue our pretty Princess. Now he gets into feng5166's castle. The castle is a large labyrinth. To make the problem simply, we assume the labyrinth is a N*M two-dimensional array which left-top corner is (0,0) and right-bottom corner is (N-1,M-1). Ignatius enters at (0,0), and the door to feng5166's room is at (N-1,M-1), that is our target. There are some monsters in the castle, if Ignatius meet them, he has to kill them. Here is some rules:
1.Ignatius can only move in four directions(up, down, left, right), one step per second. A step is defined as follow: if current position is (x,y), after a step, Ignatius can only stand on (x-1,y), (x+1,y), (x,y-1) or (x,y+1). 2.The array is marked with some characters and numbers. We define them like this: . : The place where Ignatius can walk on. X : The place is a trap, Ignatius should not walk on it. n : Here is a monster with n HP(1<=n<=9), if Ignatius walk on it, it takes him n seconds to kill the monster.
Your task is to give out the path which costs minimum seconds for Ignatius to reach target position. You may assume that the start position and the target position will never be a trap, and there will never be a monster at the start position.
 
Input
The input contains several test cases. Each test case starts with a line contains two numbers N and M(2<=N<=100,2<=M<=100) which indicate the size of the labyrinth. Then a N*M two-dimensional array follows, which describe the whole labyrinth. The input is terminated by the end of file. More details in the Sample Input.
 
Output
For each test case, you should output "God please help our poor hero." if Ignatius can't reach the target position, or you should output "It takes n seconds to reach the target position, let me show you the way."(n is the minimum seconds), and tell our hero the whole path. Output a line contains "FINISH" after each test case. If there are more than one path, any one is OK in this problem. More details in the Sample Output.
 
Sample Input
5 6
.XX.1.
..X.2.
2...X.
...XX.
XXXXX.
5 6
.XX.1.
..X.2.
2...X.
...XX.
XXXXX1
5 6
.XX...
..XX1.
2...X.
...XX.
XXXXX.
 
Sample Output
It takes 13 seconds to reach the target position, let me show you the way.
1s:(0,0)->(1,0)
2s:(1,0)->(1,1)
3s:(1,1)->(2,1)
4s:(2,1)->(2,2)
5s:(2,2)->(2,3)
6s:(2,3)->(1,3)
7s:(1,3)->(1,4)
8s:FIGHT AT (1,4)
9s:FIGHT AT (1,4)
10s:(1,4)->(1,5)
11s:(1,5)->(2,5)
12s:(2,5)->(3,5)
13s:(3,5)->(4,5)
FINISH
It takes 14 seconds to reach the target position, let me show you the way.
1s:(0,0)->(1,0)
2s:(1,0)->(1,1)
3s:(1,1)->(2,1)
4s:(2,1)->(2,2)
5s:(2,2)->(2,3)
6s:(2,3)->(1,3)
7s:(1,3)->(1,4)
8s:FIGHT AT (1,4)
9s:FIGHT AT (1,4)
10s:(1,4)->(1,5)
11s:(1,5)->(2,5)
12s:(2,5)->(3,5)
13s:(3,5)->(4,5)
1
4s:FIGHT AT (4,5)
FINISH
God please help our poor hero.
FINISH
 
Author
Ignatius.L
    #include <stdio.h>
#define MAX_ 100000;
char map[][];
typedef struct {
int x ,y ,time ,front;
}point;
int dir[][] = {-,,,,,,,-},mintime[][];
int n , m ,I ,J;
point arr[];
void bfs ()
{
while (I != J)//队列不为空
{
point head = arr[I++];
for (int i = ;i <= ;i++)
{
int x = head.x + dir[i][] ,y = head.y + dir[i][];
if (x >= && y >= && x < m && y < n && map[x][y] != 'X')
{
point k;
//k.x = x ,k.y = y;
k.time = head.time + ;
if (map[x][y] != '.')
k.time += map[x][y] - '';
if(k.time < mintime[x][y])//若到达minttime【x】【y】时间小于其他点到此点时间,此点入队
{
mintime[x][y] = k.time;
k.x = x ,k.y = y;
k.front = I - ;
//printf("%d---%d---%d---%d\n",k.x ,k.y ,k.time ,k.front);
arr[J++] = k;
}
} }
}
}
int main()
{
while (scanf("%d %d",&m,&n) != EOF)
{
for (int i = ;i < m ;i++)
for (int j = ;j < n ;j++)
{
scanf(" %c",&map[i][j]);
mintime[i][j] = MAX_;
}
//队列第一个元素赋值
arr[].x = m - ,arr[].y = n - ,arr[].time = ,arr[].front = - ,mintime[m-][n-] = ;
if (map[m-][n-] != 'X' && map[m-][n-] != '.') mintime[m - ][n - ] = arr[].time = map[m-][n-] - '';
I = ,J = ;
int time = ;
//执行搜索
bfs ();
//不能到达
if (mintime[][] == )
printf ("God please help our poor hero.\n");
else
{
printf ("It takes %d seconds to reach the target position, let me show you the way.\n",mintime[][]);
point s = arr[I-];
while (s.x != || s.y !=)
s = arr[--I];
int p ,time = ,x ,y;
//打印路径
while (s.front >= )
{
p = s.front;
x = arr[p].x ,y = arr[p].y;
printf ("%ds:(%d,%d)->(%d,%d)\n",time++,s.x,s.y,x,y);
if (map[x][y] != 'X' && map[x][y] != '.')
for(int i = ;i <= map[x][y]-'';i++)
printf("%ds:FIGHT AT (%d,%d)\n",time++,x,y);
s = arr[p];
}
}
printf ("FINISH\n");
}
return ;
}
方法2:
#include <stdio.h>
#define MAX_ 100000;
char map[][];
typedef struct {
int x ,y ,time ,front;
}point;
int dir[][] = {-,,,,,,,-},mintime[][];
int n , m ,I ,J;
point arr[];
void bfs ()
{
while (I != J)//队列不为空
{
point head = arr[I++];
for (int i = ;i <= ;i++)
{
int x = head.x + dir[i][] ,y = head.y + dir[i][];
if (x >= && y >= && x < m && y < n && map[x][y] != 'X')
{
point k;
//k.x = x ,k.y = y;
k.time = head.time + ;
if (map[x][y] != '.')
k.time += map[x][y] - '';
if(k.time < mintime[x][y])//若到达minttime【x】【y】时间小于其他点到此点时间,此点入队
{
mintime[x][y] = k.time;
k.x = x ,k.y = y;
k.front = I - ;
//printf("%d---%d---%d---%d\n",k.x ,k.y ,k.time ,k.front);
arr[J++] = k;
}
} }
}
}
int main()
{
while (scanf("%d %d",&m,&n) != EOF)
{
for (int i = ;i < m ;i++)
for (int j = ;j < n ;j++)
{
scanf(" %c",&map[i][j]);
mintime[i][j] = MAX_;
}
//队列第一个元素赋值
arr[].x = m - ,arr[].y = n - ,arr[].time = ,arr[].front = - ,mintime[m-][n-] = ;
if (map[m-][n-] != 'X' && map[m-][n-] != '.') mintime[m - ][n - ] = arr[].time = map[m-][n-] - '';
I = ,J = ;
int time = ;
//执行搜索
bfs ();
//不能到达
if (mintime[][] == )
printf ("God please help our poor hero.\n");
else
{
printf ("It takes %d seconds to reach the target position, let me show you the way.\n",mintime[][]);
point s = arr[I-];
while (s.x != || s.y !=)
s = arr[--I];
int p ,time = ,x ,y;
//打印路径
while (s.front >= )
{
p = s.front;
x = arr[p].x ,y = arr[p].y;
printf ("%ds:(%d,%d)->(%d,%d)\n",time++,s.x,s.y,x,y);
if (map[x][y] != 'X' && map[x][y] != '.')
for(int i = ;i <= map[x][y]-'';i++)
printf("%ds:FIGHT AT (%d,%d)\n",time++,x,y);
s = arr[p];
}
}
printf ("FINISH\n");
}
return ;
}
 
 

HDU-1026 Ignatius and the Princess I(BFS) 带路径的广搜的更多相关文章

  1. hdu 1026 Ignatius and the Princess I (bfs+记录路径)(priority_queue)

    题目:http://acm.hdu.edu.cn/showproblem.php?pid=1026 Problem Description The Princess has been abducted ...

  2. HDU 1026 Ignatius and the Princess I(BFS+记录路径)

    Ignatius and the Princess I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

  3. HDU 1026 Ignatius and the Princess I(带路径的BFS)

    http://acm.hdu.edu.cn/showproblem.php?pid=1026 题意:给出一个迷宫,求出到终点的最短时间路径. 这道题目在迷宫上有怪物,不同HP的怪物会损耗不同的时间,这 ...

  4. hdu 1026 Ignatius and the Princess I(BFS+优先队列)

    传送门: http://acm.hdu.edu.cn/showproblem.php?pid=1026 Ignatius and the Princess I Time Limit: 2000/100 ...

  5. hdu 1026 Ignatius and the Princess I 搜索,输出路径

    Ignatius and the Princess I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

  6. hdu 1026 Ignatius and the Princess I

    题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1026 Ignatius and the Princess I Description The Prin ...

  7. hdu 1026 Ignatius and the Princess I【优先队列+BFS】

    链接: http://acm.hdu.edu.cn/showproblem.php?pid=1026 http://acm.hust.edu.cn/vjudge/contest/view.action ...

  8. HDU 1026 Ignatius and the Princess I(BFS+优先队列)

    Ignatius and the Princess I Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d &am ...

  9. hdu 1026:Ignatius and the Princess I(优先队列 + bfs广搜。ps:广搜AC,深搜超时,求助攻!)

    Ignatius and the Princess I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

  10. hdu 1026 Ignatius and the Princess I(bfs)

    Ignatius and the Princess I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (J ...

随机推荐

  1. Qt-获取网络接口信息的综合示例

    在前面的文章中介绍了与 获 取 本 机 网 络 信 息 相 关 的 类 常 用 的 有 4 个 , 分 别 是 : QHostAddress, QHostInfo, QNetworkInterface ...

  2. RX编程笔记——JavaScript 获取地理位置

    RX编程笔记——JavaScript 获取地理位置 2016-07-05

  3. 如何去掉 Discuz标题后缀power by discuz

    如何去掉 Discuz标题后缀power by discuz 打开如下文件 template/default/common/header_common.htm/php 找到如下代码 $navtitle ...

  4. python编程语言 函数的形参

    python编程语言 函数的形参的讲解: 我在交互模式中写了个函数: def adder(**args): sum=0 for x in args.keys(): sum+=args[x] retur ...

  5. MVC-Model数据注解(一)-系统(DataAnnotations)

    要使用验证,首先,web.config要开户验证: <appSettings> <add key="ClientValidationEnabled" value= ...

  6. Adapting to views using css or js

    using css @media screen and (-ms-view-state: fullscreen-landscape) { } @media screen and (-ms-view-s ...

  7. C#.net调用axis2webService

    用C#.net调用axis2webService的时候需要引用web服务, 比如访问地址为:http://111.21.32.213:8080/axis2/services/AdService/get ...

  8. C++的构造函数和析构函数

    1.构造函数和析构函数为什么没有返回值? 构造函数和析构函数是两个非常特殊的函数:它们没有返回值.这与返回值为void的函数显然不同,后者虽然也不返回任何值,但还可以让它做点别的事情,而构造函数和析构 ...

  9. Matlab 文件命名规则

    Matlab 文件命名规则 1.文件名命名要用英文字符,第一个字符不能是数字和下划线. 2.文件名不要取为matlab的一个固有函数,m文件名的命名尽量不要是简单的英文单词,最好是由大小写英文.数字. ...

  10. django的url的name参数的意义(转发)

    http://bio.rusaer.com/archives/288   Django一个比较隐含的函数url 阅读量(5010)  |  发表 于 2010-03-09 14:26:18 Djang ...