<题目链接>

题目大意:

两个熊孩子在n*m的平地上放火玩,#表示草,两个熊孩子分别选一个#格子点火,火可以向上向下向左向右在有草的格子蔓延,点火的地方时间为0,蔓延至下一格的时间依次加一。求烧完所有的草需要的最少时间。如不能烧完输出-1。

解题分析:

暴力枚举两个起点,然后用BFS求出这两个火源能够蔓延到最远的草地所花的时间,在那些能够烧完所有草地的情况中,选择用时最少的。

#include <iostream>
#include <cstring>
#include <queue>
#include <cstdio>
#include <algorithm> typedef long long ll;
const int inf=0x3f3f3f3f;
using namespace std; char M[][],h[][];
int n,m,vis[][],res;
int next[][]={-,,,,,,,-}; struct node
{
int x,y,step;
};
queue<node>q;
vector<node>v; bool judge() //判断是否所有的草全部烧过了
{
for(int i=;i<n;i++)
for(int j=;j<m;j++)
if(M[i][j]=='#'&&vis[i][j]==) return false;
return true;
} int bfs(node a,node b)
{
int num;
memset(vis,,sizeof(vis));
while(!q.empty()) q.pop();
q.push(a);vis[a.x][a.y]=;
q.push(b);vis[b.x][b.y]=;
while(!q.empty())
{
node now=q.front();q.pop();
num=now.step;
node nxt;
for(int i=;i<;i++){
nxt.x=now.x+next[i][];
nxt.y=now.y+next[i][];
nxt.step=now.step+;
if(nxt.x>=&&nxt.y>=&&nxt.x<n&&nxt.y<m&&M[nxt.x][nxt.y]=='#'&&!vis[nxt.x][nxt.y])
{
vis[nxt.x][nxt.y]=;
q.push(nxt);
}
}
}
return num; //num为能够烧到的所有点的最大步数
} int main()
{
int T,ncase=;cin>>T;
while(T--)
{
res=inf;
scanf("%d %d",&n,&m);
getchar();
v.clear();
for(int i=;i<n;i++){
scanf("%s",M[i]);
for(int j=;j<m;j++){
if(M[i][j]=='#'){
node a;a.x=i,a.y=j,a.step=;
v.push_back(a);
}
}
}
for(int i=;i<v.size();i++){
for(int j=i;j<v.size();j++){ //枚举两个起点
int tmp=min(bfs(v[i],v[j]),res);
if(judge())res=min(res,tmp);
}
}
printf("Case %d: ",++ncase);
if(res==inf) printf("-1\n");
else printf("%d\n",res);
}
}

2018-08-29

FZU 2150 Fire Game(双起点)【BFS】的更多相关文章

  1. fzu 2150 Fire Game 【身手BFS】

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

  2. FZU 2150 Fire Game (暴力BFS)

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

  3. 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) ...

  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)

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

  6. FZU 2150 Fire Game (高姿势bfs--两个起点)(路径不重叠:一个队列同时跑)

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

  7. FZU 2150 Fire Game (高姿势bfs--两个起点)

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

  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+双起点枚举

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

随机推荐

  1. C# 解决请求被中止:无法建立SSL / TLS安全通道问题

    在网上查了很多资料,基本是这么一个思路: 在通过 HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url); req.Method ...

  2. mysql 查询优化案例汇总

    一 简介:此文章为经历过的sql案例集合和相关思路 二 案例1: 现象: 测试环境出现select语句,join2张表多次join,explain结果如下 出现 using where,using j ...

  3. js遍历对象的方法

    1. for ... in 语句 for (let variable in object)  { ... } https://developer.mozilla.org/zh-CN/docs/Web/ ...

  4. python cookbook 笔记二

    去重和排序: #coding=utf-8 def dedupe(items): seen = set() for item in items: if item not in seen: yield i ...

  5. ubuntu14.04下 Kinect V2+Ros接口安装

    1. 首先git下载代码,放到主文件夹下面 git clone https://github.com/OpenKinect/libfreenect2.git 2. 然后安装依赖项如下,最好事先编译安装 ...

  6. Windows系统FTP Shell

    ftp open 10.0.0.0.2 21101 user passwd ls cd pwd delete get /home/err.log Error.log put err.log /home ...

  7. Libevent源码分析系列

    1.使用libevent库     源码那么多,该怎么分析从哪分析呢?一个好的方法就是先用起来,会用了,然后去看底层相应的源码,这样比较有条理,自上向下掌握.下面用libevent库写个程序,每隔1秒 ...

  8. 优秀的gdb图形化前端调试器

    目前我自己最喜欢的还是 ddd . gdbgui 和 vim-vebugger插件或vimgdb插件 三种. You could try using Insight a graphical front ...

  9. Shell 中test 单中括号[] 双中括号[[]] 的区别

    Shell test 单中括号[] 双中括号[[]] 的区别 在写Shell脚本的时候,经常在写条件判断语句时不知道该用[] 还是 [[]],首先我们来看他们的类别: $type [ [[ test ...

  10. python下的socket常用方法举例

    python下的socket 1.简单的server和client端的socket代码 server.py: #!/usr/bin/env python #_*_ coding:utf-8 _*_ i ...