博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu1242
阅读量:5301 次
发布时间:2019-06-14

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

//bfs+优先队列#include
#include
#include
using namespace std;const int ROW = 201;const int COL = 201;const int DIRS = 4;char map[ROW][COL];int dir[DIRS][2] = {-1,0,0,1,1,0,0,-1};struct priNode { int x, y, time; friend bool operator < (priNode a, priNode b) { return a.time > b.time; }};bool inMap(int pi, int pj, int row, int col);int bfs(int ai, int aj, int row, int col, int *ans);int main(void) { int n, m; int i, j; int ai, aj; while (scanf("%d%d", &n, &m) != EOF) { for (i=0; i
=0 && pi
=0 && pj < col);}int bfs(int ai, int aj, int row, int col, int *ans) { int i; priNode now, next; priority_queue
Q; now.x = ai; now.y = aj; now.time = 0; Q.push(now); map[ai][aj] = '#'; while (!Q.empty()) { now = Q.top(); Q.pop(); if (map[now.x][now.y] == 'r') { *ans = now.time; return 1; } for (i=0; i

 

转载于:https://www.cnblogs.com/try86/archive/2013/04/09/3011081.html

你可能感兴趣的文章
Linux 下 LXD 容器搭建 Hadoop 集群
查看>>
apache自带压力测试工具ab的使用及解析
查看>>
C语言作业3
查看>>
C#使用Xamarin开发可移植移动应用(2.Xamarin.Forms布局,本篇很长,注意)附源码
查看>>
koogra--Excel文件读取利器
查看>>
ASP.NET 使用ajaxupload.js插件出现上传较大文件失败的解决方法
查看>>
jenkins搭建
查看>>
C#中使用Split分隔字符串的技巧
查看>>
(springboot)freemarker(二)
查看>>
linux下golang gRPC配置详解
查看>>
mongodb 简单使用说明
查看>>
eclipse的调试方法的简单介绍
查看>>
OneAPM 云监控部署与试用体验
查看>>
加固linux
查看>>
wget 升级
查看>>
为什么需要大数据安全分析?
查看>>
day13.字典复习
查看>>
IPSP问题
查看>>
(转)Java中的String为什么是不可变的? -- String源码分析
查看>>
HNU 10362 A+B for Input-Output Practice (II)
查看>>