博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
手撸hdu1026!哼!0msac
阅读量:5169 次
发布时间:2019-06-13

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

哼 EOF超时了

还有打印的时候坐标反了 哼 wa了两次

哼 我这人真的编译过就过的 就这么任性样例都不测一下的呢

 

超任性的!

 

#include
#include
#include
#include
using namespace std;struct node{ int x,y,step; friend bool operator < (node n1,node n2){ return n1.step > n2.step; }}cur,cur1,next;const int maxn = 100 + 10;int map[maxn][maxn];int blood[maxn][maxn];int flag[maxn][maxn];int dir[4][2] = {
0,1,1,0,0,-1,-1,0},dr[4][2] = {
0,1,1,0,0,-1,-1,0};;int n,m;int judge_ok(int cx,int cy){ if(cx < 0||cy < 0||cx >= n||cy >= m) return 0; if(map[cx][cy] == -1) return 0; return 1;}int bFS(int x0,int y0){ int i,j,cx,cy; cur.x = x0; cur.y = y0; cur.step = 0; priority_queue
q; q.push(cur); map[x0][y0] = -1; while(!q.empty()){ cur = q.top();q.pop(); if(cur.x == n - 1&&cur.y == m - 1) return cur.step; for(i = 0;i < 4;i++){ cur1.x = cur.x + dr[i][0]; cur1.y = cur.y + dr[i][1]; if(judge_ok(cur1.x,cur1.y)){ cur1.step = cur.step + 1 + map[cur1.x][cur1.y]; map[cur1.x][cur1.y] = -1; flag[cur1.x][cur1.y] = i + 1; q.push(cur1); } } } return -1;}int cur_step = 1;void PRINT(int x,int y){ if(flag[x][y] == 0) return; int next_x = x - dr[flag[x][y]-1][0]; int next_y = y - dr[flag[x][y]-1][1]; PRINT(next_x,next_y);//往前走 printf("%ds:(%d,%d)->(%d,%d)\n",cur_step++,next_x,next_y,x,y); while(blood[x][y]--){ printf("%ds:FIGHT AT (%d,%d)\n",cur_step++,x,y); }}int main(){ while(scanf("%d%d",&n,&m) != EOF){ memset(map,0,sizeof(map)); memset(flag,0,sizeof(flag)); memset(blood,0,sizeof(blood)); char s[110];int i,j; for(i = 0;i < n;i++){ scanf("%s",s); for(j = 0;j < m;j++){ if(s[j] == '.') map[i][j] = 0; else if(s[j] == 'X') map[i][j] = -1; else{ map[i][j] = blood[i][j] = s[j] - '0'; } } } int result = bFS(0,0); if(result == -1) 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",result); //PRINT(n-1,m-1); cur_step = 1; PRINT(n-1,m-1); } printf("FINISH\n"); } return 0;}

 

转载于:https://www.cnblogs.com/xuyanqd/p/9033737.html

你可能感兴趣的文章
【编程思想】【设计模式】【行为模式Behavioral】中介者模式Mediator
查看>>
后端接口时间戳或者随机数的作用
查看>>
IOS越狱环境搭建
查看>>
tomcat docBase 和 path
查看>>
java默认语法、EL、JSTL表达式,JSTL和struts Tag标签的使用总结
查看>>
复杂度分析
查看>>
Vue笔记:使用 axios 发送请求
查看>>
富文本编辑器 - RichEditor
查看>>
LintCode刷题笔记-- Count1 binary
查看>>
java webcontroller访问时报415错误
查看>>
qcow2、raw、vmdk等镜像格式
查看>>
.NET:CLR via C# Assembly Loading
查看>>
CentOS安装rar及用法
查看>>
TYVJ-P1864 守卫者的挑战 题解
查看>>
Jzoj5455【NOIP2017提高A组冲刺11.6】拆网线
查看>>
特定字符序列的判断(1028)
查看>>
华为面试
查看>>
平衡二叉树(AVL Tree)
查看>>
【BZOJ3295】[Cqoi2011]动态逆序对 cdq分治
查看>>
【CF799E】Aquarium decoration 线段树
查看>>