博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
*Hdu 1026-Ignatius and the Princess I
阅读量:6632 次
发布时间:2019-06-25

本文共 1166 字,大约阅读时间需要 3 分钟。

题目思想比較简单,可是题目要求输出路径比較麻烦,学习了 博主的方法,感觉不错。
#include 
#include"stdio.h"#include"string.h"#include"queue"using namespace std;const int maxn = 100 + 5;struct node{ int x,y; int step; friend bool operator<(node n1,node n2) { return n1.step>n2.step; }};int dir[4][2]={0,1,1,0,0,-1,-1,0};int map[maxn][maxn];int flag[maxn][maxn];int blood[maxn][maxn];int n,m;int ptime;int BFS(){ priority_queue
Q; node s; s.x = 0; s.y = 0; s.step = 0; map[0][0] = -1; Q.push(s); while(!Q.empty()) { if(Q.top().x==n-1 && Q.top().y==m-1) return Q.top().step; node next; for(int i=0;i<4;i++) { next.x = Q.top().x + dir[i][0]; next.y = Q.top().y + dir[i][1]; if(next.x>=0 && next.x
=0 && next.y
(%d,%d)\n",ptime++,nx_x,nx_y,x,y); while(blood[x][y]--) printf("%ds:FIGHT AT (%d,%d)\n",ptime++,x,y);}int main(){ char str[maxn]; int ans; while(scanf("%d%d",&n,&m)!=EOF) { memset(map,0,sizeof(map)); memset(flag,0,sizeof(flag)); memset(blood,0,sizeof(blood)); for(int i=0;i

转载地址:http://zgfvo.baihongyu.com/

你可能感兴趣的文章
修改数组之----splice
查看>>
Linux中chkconfig使用介绍
查看>>
二进制方式快速安装MySQL数据库
查看>>
查询指定库中所有表
查看>>
Flash AS3 Loader的一些总结
查看>>
js的逻辑 OR 运算符- ||
查看>>
[SQL Server]一次执行资料夹内的.sql 指令码
查看>>
【计算机视觉】粒子滤波跟踪
查看>>
hadoop集群扩展
查看>>
操作系统诊断
查看>>
[Compose] 19. Leapfrogging types with Traversable
查看>>
Tomcat version 7.0 only supports J2EE 1.2, 1.3, 1.4, and Java EE 5 and 6 Web modules
查看>>
2015年度新增开源软件排名TOP100
查看>>
BZOJ 2456: mode(新生必做的水题)
查看>>
View State
查看>>
自旋锁spinlock解析
查看>>
【java.lang.UnsupportedClassVersionError】版本不一致出错
查看>>
html5播放mp4视频代码
查看>>
032_nginx配置文件安全下载
查看>>
Linux下tomcat修改成的80端口无法访问
查看>>