Fire Game

题意:

两个小朋友可以任选一块草地点火,草地可以不同,也可以相同,问最少的烧光草地的时间。

思路:

一开始看到这个以为是联通块计数,没想到这道题通过枚举两个起始点作为队列的初始点,每次跑一边bfs即可。

  1. #include <algorithm>
  2. #include <iterator>
  3. #include <iostream>
  4. #include <cstring>
  5. #include <cstdlib>
  6. #include <iomanip>
  7. #include <bitset>
  8. #include <cctype>
  9. #include <cstdio>
  10. #include <string>
  11. #include <vector>
  12. #include <cmath>
  13. #include <queue>
  14. #include <list>
  15. #include <map>
  16. #include <set>
  17. using namespace std;
  18. //#pragma GCC optimize(3)
  19. //#pragma comment(linker, "/STACK:102400000,102400000") //c++
  20. #define lson (l , mid , rt << 1)
  21. #define rson (mid + 1 , r , rt << 1 | 1)
  22. #define debug(x) cerr << #x << " = " << x << "\n";
  23. #define pb push_back
  24. #define pq priority_queue
  25.  
  26. typedef long long ll;
  27. typedef unsigned long long ull;
  28.  
  29. typedef pair<ll ,ll > pll;
  30. typedef pair<int ,int > pii;
  31. typedef pair<int,pii> p3;
  32.  
  33. //priority_queue<int> q;//这是一个大根堆q
  34. //priority_queue<int,vector<int>,greater<int> >q;//这是一个小根堆q
  35. #define fi first
  36. #define se second
  37. //#define endl '\n'
  38.  
  39. #define OKC ios::sync_with_stdio(false);cin.tie(0)
  40. #define FT(A,B,C) for(int A=B;A <= C;++A) //用来压行
  41. #define REP(i , j , k) for(int i = j ; i < k ; ++i)
  42. //priority_queue<int ,vector<int>, greater<int> >que;
  43.  
  44. const ll mos = 0x7FFFFFFFLL; //
  45. const ll nmos = 0x80000000LL; //-2147483648
  46. const int inf = 0x3f3f3f3f;
  47. const ll inff = 0x3f3f3f3f3f3f3f3fLL; //
  48. const int mod = 1e9+;
  49.  
  50. const double PI=acos(-1.0);
  51.  
  52. // #define _DEBUG; //*//
  53. #ifdef _DEBUG
  54. freopen("input", "r", stdin);
  55. // freopen("output.txt", "w", stdout);
  56. #endif
  57. /*-----------------------showtime----------------------*/
  58. const int maxn = ;
  59. int n,m;
  60. string mp[maxn];
  61. int dp[maxn][maxn];
  62.  
  63. int nt[][] = {
  64. {,},{,},{-,},{,-},
  65. };
  66. struct node
  67. {
  68. int x,y,step;
  69. }q[maxn*maxn];
  70. int mx,tot;
  71. void bfs(node a,node b){
  72. mx = ;
  73. for(int i=; i<maxn; i++){
  74. for(int j=; j<maxn; j++)dp[i][j] = inf;
  75. }
  76. queue<node>que;
  77. que.push(a);
  78. if(a.x!=b.x||a.y!=b.y)que.push(b);
  79. dp[a.x][a.y] = ;
  80. dp[b.x][b.y] = ;
  81. while(!que.empty()){
  82. int x = que.front().x,y = que.front().y,s = que.front().step;
  83. que.pop();
  84. for(int i= ; i<; i++){
  85. int nx = x + nt[i][],ny = y + nt[i][];
  86. if(nx < ||nx >=n || ny <||ny>=m)continue;
  87. if(mp[nx][ny]=='.')continue;
  88. if(dp[nx][ny] > s + ){
  89. dp[nx][ny] = s + ;
  90. mx = max(mx,s+);
  91. node tmp={nx,ny,s+};
  92. que.push(tmp);
  93.  
  94. }
  95. }
  96. }
  97. }
  98. void solve(){
  99. cin>>n>>m;
  100.  
  101. for(int i=; i<n; i++){
  102. cin>>mp[i];
  103. }
  104. int cnt = ,ans = inf;
  105. for(int i=; i<n ; i++){
  106. for(int j=; j<m; j++){
  107. if(mp[i][j]=='#'){
  108. q[++cnt].x = i;
  109. q[cnt].y = j;
  110. q[cnt].step = ;
  111. }
  112. }
  113. }
  114.  
  115. for(int i=; i<=cnt; i++)
  116. {
  117.  
  118. for(int j=i; j<=cnt; j++){
  119. bfs(q[i],q[j]);
  120. int flag = ;
  121. for(int x = ; x < n; x++){
  122. for(int y = ; y<m; y++){
  123. if(dp[x][y] >=inf && mp[x][y] == '#')flag= ;
  124. }
  125. }
  126. if(flag)ans = min(ans, mx);
  127.  
  128. }
  129. }
  130. if(ans < inf)cout<<ans<<endl;
  131. else cout<<-<<endl;
  132. }
  133. int main(){
  134. int T; cin>>T;
  135. for(int t=;t<=T;t++){
  136. cout<<"Case "<<t<<": ";
  137. solve();
  138. }
  139. return ;
  140. }

FZU-2150

FZU - 2150-Fire Game BFS-枚举的更多相关文章

  1. FZU - 2150 Fire Game bfs+双起点枚举

    题意,10*10的地图,有若干块草地“#”,草地可以点燃,并在一秒后点燃相邻的草地.有墙壁‘·‘阻挡.初始可以从任意两点点火.问烧完最短的时间.若烧不完输出-1. 题解:由于100的数据量,直接暴力. ...

  2. (FZU 2150) Fire Game (bfs)

    题目链接:http://acm.fzu.edu.cn/problem.php?pid=2150 Problem Description Fat brother and Maze are playing ...

  3. FZU 2150 Fire Game (bfs+dfs)

    Problem Description Fat brother and Maze are playing a kind of special (hentai) game on an N*M board ...

  4. FZU 2150 Fire Game(点火游戏)

    FZU 2150 Fire Game(点火游戏) Time Limit: 1000 mSec    Memory Limit : 32768 KB Problem Description - 题目描述 ...

  5. fzu 2150 Fire Game 【身手BFS】

    称号:fzupid=2150"> 2150 Fire Game :给出一个m*n的图,'#'表示草坪,' . '表示空地,然后能够选择在随意的两个草坪格子点火.火每 1 s会向周围四个 ...

  6. FZU 2150 Fire Game (暴力BFS)

    [题目链接]click here~~ [题目大意]: 两个熊孩子要把一个正方形上的草都给烧掉,他俩同一时候放火烧.烧第一块的时候是不花时间的.每一块着火的都能够在下一秒烧向上下左右四块#代表草地,.代 ...

  7. FZU 2150 fire game (bfs)

    Problem 2150 Fire Game Accept: 2133    Submit: 7494Time Limit: 1000 mSec    Memory Limit : 32768 KB ...

  8. FZU 2150 Fire Game

    Fire Game Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u Submit St ...

  9. FZU 2150 Fire Game 【两点BFS】

    Fat brother and Maze are playing a kind of special (hentai) game on an N*M board (N rows, M columns) ...

  10. FZU 2150 Fire Game(BFS)

    点我看题目 题意 :就是有两个熊孩子要把一个正方形上的草都给烧掉,他俩同时放火烧,烧第一块的时候是不花时间的,每一块着火的都可以在下一秒烧向上下左右四块#代表草地,.代表着不能烧的.问你最少花多少时间 ...

随机推荐

  1. 【MySQL】ON DUPLICATE KEY UPDATE

    之前没用过这个操作,甚至没见过--最近接触到,而且还挺有用. 作用:若 KEY 不重复,则插入记录:否则更新记录. 单条操作: INSERT INTO table(a, b, c) VALUES (1 ...

  2. Mysql之锁、事务绝版详解---干货!

    一 锁的分类及特性 数据库锁定机制简单来说,就是数据库为了保证数据的一致性,而使各种共享资源在被并发访问变得有序所设计的一种规则.对于任何一种数据库来说都需要有相应的锁定机制,所以MySQL自然也不能 ...

  3. 什么?小程序实时语音识别你还在痛苦的对接科大讯飞?百度Ai识别?

    前言 微信小程序,说不上大火,但是需求还是不少的.各大企业都想插一足 于是前端同学就有事情做了. 需求 我需要录音 我边说话边识别,我要同声传译,我要文字转语音,还要萝莉音 我:??? 正文 一开始, ...

  4. spring学习笔记之---bean管理

    bean管理(xml) (一)spring的工厂类 FileSystemXmlApplicationContext 读取磁盘配置文件 (二)bean实例化的三种方式 (1)使用类构造器实例化(默认无参 ...

  5. 先定一个小目标:10天自学C语言编程,教你如何改变一生

    C语言是面向过程的,而C++是面向对象的 C和C++的区别: C是一个结构化语言,它的重点在于算法和数据结构.C程序的设计首要考虑的是如何通过一个过程,对输入(或环境条件)进行运算处理得到输出(或实现 ...

  6. Unity通过NTP获取网络时间

    最初通过qq时间服务器获得时间,经常出现有网络也获取失败的情况. 后面寻找解决办法,查找资料终于发现通过ntp时间服务器获取网络时间的方法.   首先游戏开始获得初始化网络时间,通常只获取一次,其他时 ...

  7. Docker 更新版本

    Docker 更新版本 原来版本 1.10 更新后的版本 19.03.1 更新 Docker 版本需要注意的问题: 注意系统是否支持新版本的储存驱动. 19.03.01 版本默认使用的储存驱动是 ov ...

  8. Spark 系列(八)—— Spark SQL 之 DataFrame 和 Dataset

    一.Spark SQL简介 Spark SQL 是 Spark 中的一个子模块,主要用于操作结构化数据.它具有以下特点: 能够将 SQL 查询与 Spark 程序无缝混合,允许您使用 SQL 或 Da ...

  9. 简单认识Nginx---负载均衡

    中大型项目都会考虑到分布式,前面几篇文章着重介绍了数据处理的技术集群.今天来研究一下关于服务器的负载均衡–Nginx.他除了静态资源的处理外还有可以决定将请求置于那台服务上. Nginx的安装 点我下 ...

  10. wwww

    public class MainActivity extends AppCompatActivity implements XListView.IXListViewListener{ ; priva ...