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 (Java/Others) Total Submission(s): 9910 Accepted Submission(s): 2959 Special Judge
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.
1s:(0,0)->(1,0)
It takes 14 seconds to reach the target position, let me show you the way.
1
God please help our poor hero.
#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) 带路径的广搜的更多相关文章
- 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 ...
- 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 ...
- HDU 1026 Ignatius and the Princess I(带路径的BFS)
http://acm.hdu.edu.cn/showproblem.php?pid=1026 题意:给出一个迷宫,求出到终点的最短时间路径. 这道题目在迷宫上有怪物,不同HP的怪物会损耗不同的时间,这 ...
- 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 ...
- 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 ...
- hdu 1026 Ignatius and the Princess I
题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1026 Ignatius and the Princess I Description The Prin ...
- 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 ...
- HDU 1026 Ignatius and the Princess I(BFS+优先队列)
Ignatius and the Princess I Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d &am ...
- 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 ...
- 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 ...
随机推荐
- memcached全面剖析--5
memcached的应用和兼容程序 mixi案例研究 mixi在提供服务的初期阶段就使用了memcached. 随着网站访问量的急剧增加,单纯为数据库添加slave已无法满足需要,因此引入了memca ...
- PHP学习心得(三)——处理表单
表单的任何元素都在 PHP 脚本中自动生效. 一个简单的 HTML 表单: <form action="action.php" method="post" ...
- 一个页面,多个flash(刚学jq插件)
只贴js那部分哦 调用 // flash轮播图 var sumF=$('.btnTabs span').length/4; //有四个flash var flashT01=new flash($('. ...
- poj 1830 开关问题
开关问题 题意:给n(0 < n < 29)开关的初始和最终状态(01表示),以及开关之间的关联关系(关联关系是单向的输入a b表示a->b),问有几种方式得到最终的状态.否则输出字 ...
- Hadoop学习—最大的敌人是自己
(大讲台:国内首个it在线教育混合式自适应学习) 如果没有那次学习机会,我依然深陷在封闭的泥塘里. 我是今年刚毕业的大学生,我学习成绩不错,所学也是国内很厉害的专业,全国范围内只有6所院校拥有学位授予 ...
- 导入NGUI插件
在Unity编辑器顶部菜单栏中的Assets菜单中选择Import Package,然后选择Custom Package(自定义资源包),弹出资源路径窗口,在其中找到NGUI资源包所在的位置,单击”打 ...
- Jfinal 入门
Jfinal 入门 IDE----->IDEA 新建项目 新建web项目 添加maven特性 方便导入jar包,不用一个个导入了 配置pom.xml <dependencies> & ...
- Windows 2008 故障转移群集介绍
转载:http://dufei.blog.51cto.com/382644/902026 今天有客户问起Windows 群集的相关内容,毕竟Windows Server2008所支持的群集技术和Win ...
- JSON漫谈
JSON: JavaScript Object Notation(JavaScript 对象表示法),JSON 是存储和交换文本信息的语法.类似 XML.JSON 比 XML 更小.更快,更易解析. ...
- mysql sql灵活运用
1.mysq获取表的字段及属性 SELECT * FROM information_schema.COLUMNS WHERE table_name = 'item_url'; 2.正则表达式 SELE ...