题目传送门

  1. /*
  2. BFS:首先对火搜索,求出火蔓延到某点的时间,再对J搜索,如果走到的地方火已经烧到了就不入队,直到走出边界。
  3. */
  4. /************************************************
  5. Author :Running_Time
  6. Created Time :2015-8-4 8:11:54
  7. File Name :UVA_11624.cpp
  8. *************************************************/
  9. #include <cstdio>
  10. #include <algorithm>
  11. #include <iostream>
  12. #include <sstream>
  13. #include <cstring>
  14. #include <cmath>
  15. #include <string>
  16. #include <vector>
  17. #include <queue>
  18. #include <deque>
  19. #include <stack>
  20. #include <list>
  21. #include <map>
  22. #include <set>
  23. #include <bitset>
  24. #include <cstdlib>
  25. #include <ctime>
  26. using namespace std;
  27. #define lson l, mid, rt << 1
  28. #define rson mid + 1, r, rt << 1 | 1
  29. typedef long long ll;
  30. const int MAXN = 1e3 + ;
  31. const int INF = 0x3f3f3f3f;
  32. const int MOD = 1e9 + ;
  33. char maze[MAXN][MAXN];
  34. bool vis[MAXN][MAXN];
  35. int step[MAXN][MAXN];
  36. int dx[] = {-, , , };
  37. int dy[] = {, , -, };
  38. int n, m;
  39. bool judge_f(int x, int y) {
  40. if (x < || x > n || y < || y > m || vis[x][y] || maze[x][y] == '#') return false;
  41. return true;
  42. }
  43. bool judge_j(int x, int y) {
  44. if (x < || x > n || y < || y > m) return true;
  45. return false;
  46. }
  47. void BFS_F(void) {
  48. memset (step, INF, sizeof (step));
  49. memset (vis, false, sizeof (vis));
  50. queue<pair<int, int> > Q;
  51. for (int i=; i<=n; ++i) {
  52. for (int j=; j<=m; ++j) {
  53. if (maze[i][j] == 'F') {
  54. Q.push (make_pair (i, j)); vis[i][j] = true;
  55. step[i][j] = ;
  56. }
  57. }
  58. }
  59. while (!Q.empty ()) {
  60. int x = Q.front ().first, y = Q.front ().second; Q.pop ();
  61. for (int i=; i<; ++i) {
  62. int tx = x + dx[i], ty = y + dy[i];
  63. if (!judge_f (tx, ty)) continue;
  64. step[tx][ty] = step[x][y] + ;
  65. Q.push (make_pair (tx, ty)); vis[tx][ty] = true;
  66. }
  67. }
  68. }
  69. void BFS_J(void) {
  70. memset (vis, false, sizeof (vis));
  71. queue<pair<int, int> > Q;
  72. for (int i=; i<=n; ++i) {
  73. for (int j=; j<=m; ++j) {
  74. if (maze[i][j] == 'J') {
  75. Q.push (make_pair (i, j)); step[i][j] = ; vis[i][j] = true; break;
  76. }
  77. }
  78. }
  79. while (!Q.empty ()) {
  80. int x = Q.front ().first, y = Q.front ().second; Q.pop ();
  81. for (int i=; i<; ++i) {
  82. int tx = x + dx[i], ty = y + dy[i];
  83. if (judge_j (tx, ty)) {
  84. printf ("%d\n", step[x][y] + ); return ;
  85. }
  86. if (step[x][y] + >= step[tx][ty] || vis[tx][ty] || maze[tx][ty] == '#') continue;
  87. Q.push (make_pair (tx, ty)); step[tx][ty] = step[x][y] + ; vis[tx][ty] = true;
  88. }
  89. }
  90. puts ("IMPOSSIBLE");
  91. }
  92. int main(void) { //UVA 11624 Fire!
  93. int T; scanf ("%d", &T);
  94. while (T--) {
  95. scanf ("%d%d", &n, &m);
  96. for (int i=; i<=n; ++i) {
  97. scanf ("%s", maze[i] + );
  98. }
  99. BFS_F (); BFS_J ();
  100. }
  101. return ;
  102. }

BFS(两点搜索) UVA 11624 Fire!的更多相关文章

  1. BFS(两点搜索) FZOJ 2150 Fire Game

    题目传送门 题意:'#'表示草地,两个人在草地上点火,相邻的草地会烧起来,每烧一格等1秒,问最少要等几秒草地才烧完 分析:这题和UVA 11624 Fire!有点像,那题给定了两个点,这题两点不确定, ...

  2. UVa 11624 Fire!(着火了!)

    UVa 11624 - Fire!(着火了!) Time limit: 1.000 seconds Description - 题目描述 Joe works in a maze. Unfortunat ...

  3. UVA - 11624 Fire! bfs 地图与人一步一步先后搜/搜一次打表好了再搜一次

    UVA - 11624 题意:joe在一个迷宫里,迷宫的一些部分着火了,火势会向周围四个方向蔓延,joe可以向四个方向移动.火与人的速度都是1格/1秒,问j能否逃出迷宫,若能输出最小时间. 题解:先考 ...

  4. UVA 11624 Fire!【两点BFS】

    Joe works in a maze. Unfortunately, portions of the maze have caught on fire, and the owner of the m ...

  5. UVA 11624 Fire! BFS搜索

    题意:就是问你能不能在火烧到你之前,走出一个矩形区域,如果有,求出最短的时间 分析:两遍BFS,然后比较边界 #include<cstdio> #include<algorithm& ...

  6. UVA 11624 - Fire! 图BFS

    看题传送门 昨天晚上UVA上不去今天晚上才上得去,这是在维护么? 然后去看了JAVA,感觉还不错昂~ 晚上上去UVA后经常连接失败作死啊. 第一次做图的题~ 基本是照着抄的T T 不过搞懂了图的BFS ...

  7. UVA 11624 Fire!(广度优先搜索)

    题目大意:在一个N*M的迷宫内,J代表某人(只有一个),F代表火(可能不只一个),#代表墙,火每分钟会向四周除了墙以外的地方扩散一层,问人能否在没被火烧到 之前逃出迷宫,若能逃出输出最短时间.很明显的 ...

  8. UVa 11624 Fire!(BFS)

    Fire! Time Limit: 5000MS   Memory Limit: 262144KB   64bit IO Format: %lld & %llu Description Joe ...

  9. uva 11624 Fire!(搜索)

    开始刷题啦= = 痛并快乐着,学到新东西的感觉其实比看那些无脑的小说.电视剧有意思多了 bfs裸体,关键是先把所有的着火点放入队列,分开一个一个做bfs会超时的 发现vis[][]是多余的,完全可以用 ...

随机推荐

  1. [K/3Cloud] 调用其他界面时通过Session传递对象参数

    DynamicFormShowParameter参数的CustomParams参数列表只支持string类型的参数,对于复杂参数的传递需要通过单据View对象的共享Session来完成,如: 在调用界 ...

  2. MongoDB学习day03--索引和explain分析查询速度

    一.索引基础 db.user.ensureIndex({"username":1}) 创建索引,username为key,数字 1 表示 username 键的索引按升序存储, - ...

  3. Ubuntu 16.04安装JMeter测试工具

    JMeter是Java的测试工具,由Apache开发. 同样,JMeter是跨平台的. 下载: http://jmeter.apache.org/download_jmeter.cgi 安装: 7z ...

  4. 条款九: 避免隐藏标准形式的new

    因为内部范围声明的名称会隐藏掉外部范围的相同的名称,所以对于分别在类的内部和全局声明的两个相同名字的函数f来说,类的成员函数会隐藏掉全局函数 class x { public: void f(); / ...

  5. JS原生DOM操作总结

    DOM的主要操作——增.删.改.查节点 (1) 查找节点 document.getElementById('div1') document.getElementsByName('uname') doc ...

  6. Session与Cookie解析

    Session和Cookie这两个对象也接触了比較长的时间了,今天就来总结一下. 首先,他们都是会话跟踪中经常使用的技术.Cookie在client记录信息来确定用户身份,Session在服务端记录信 ...

  7. HDU Today HDU杭电2112【Dijkstra || SPFA】

    http://acm.hdu.edu.cn/showproblem.php?pid=2112 Problem Description 经过锦囊相助,海东集团最终度过了危机,从此.HDU的发展就一直顺风 ...

  8. 为何被主流抛弃-江西IDC机房价格为何居高不下缺少竞争力-2014年5月江西IDC排行榜

     经常有人问江西IDC排行榜,为什么江西市场缺乏活力. 榜单调研者们有时仅仅能表示无解和无奈. 在IDC领域,其实已经形成了一二三线的城市之分. 一线城市是以上海.北京.深圳为代表的拥有最早国际宽 ...

  9. centOS的联网问题

    centOS连接了一个下午,没连上网络,隔了两天,又试了一下午才把网连上,一直查centOS的网络连接问题都搞不定,最后还是问了朋友怎么给虚拟机联网谈到虚拟网卡的问题.建议可以看看网络适配器,VMwa ...

  10. 基于Canvas的Char.js库使用

    Chart.js是基于Html5 Canvas的图表库. 官网:http://www.chartjs.org/ 參考文档:http://www.chartjs.org/docs/ 支持六种图表,相应源 ...