题目:

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

输入:

第一行,输入一个T,表示有T组测试数据。 每组数据由一个n,m分别表示行列

1 <= T <=100, 1 <= n <=10, 1 <= m <=10

输出:

输出最少需要的时间>

样例:

分析:双起点的BFS,本质上就是枚举两个起点同时压入队列;

注意题目要求走过所有’#‘,所以BFS的循环不需要手动退出;  当’#‘个数<=2时需要特判

#include<iostream>
#include<sstream>
#include<cstdio>
#include<cstdlib>
#include<string>
#include<cstring>
#include<algorithm>
#include<functional>
#include<iomanip>
#include<numeric>
#include<cmath>
#include<queue>
#include<vector>
#include<set>
#include<cctype>
#define PI acos(-1.0)
const int INF = 0x3f3f3f3f;
const int NINF = -INF - ;
typedef long long ll;
using namespace std;
int n, m;
int num;
char maze[][];
typedef pair<int, int> P;
P rec[];//rec用于存储’#‘的数量及坐标位置
int d[][], used[][];
int dx[] = {-, , , }, dy[] = {, , , -};
int bfs(P x, P y)
{
queue<P> q;
for (int i = ; i < n; ++i)
{
for (int j = ; j < m; ++j)
d[i][j] = INF;
}
memset(used, , sizeof(used));
q.push(x), q.push(y);
d[x.first][x.second] = , d[y.first][y.second] = ;
used[x.first][x.second] = , used[y.first][y.second] = ;
P temp;//用于存储队列front的pair定义在这是为了在队列被取尽后,循环外能得到最后一次循环的d值
//cout << x.first << ',' << x.second << ' ' << y.first << ',' << y.second << endl;
while (q.size())
{
temp = q.front();
//cout << temp.first << ' ' << temp.second << endl;
q.pop();
for (int i = ; i < ; ++i)
{
int nx = temp.first + dx[i], ny = temp.second + dy[i];
if (nx >= && nx < n && ny >= && ny < m && !used[nx][ny] && maze[nx][ny] != '.')
{
used[nx][ny] = ;
q.push(P(nx, ny));
d[nx][ny] = d[temp.first][temp.second] + ;
}
}
}
//cout << d[x.first][x.second] << ' ' << d[y.first][y.second] << endl;
for (int i = ; i < num; ++i)
{
if (d[rec[i].first][rec[i].second] == INF)//仍存在未烧到的’#‘
return INF;
}
return d[temp.first][temp.second];
}
int main()
{
int T, t = ;
cin >> T;
while (T--)
{
t++;
int ans = INF;
cin >> n >> m;
num = ;
for (int i = ; i < n; ++i)
{
for (int j = ; j < m; ++j)
{
cin >> maze[i][j];
if (maze[i][j] == '#')
rec[num].first = i, rec[num++].second = j;
}
}
if (num <= )//特判
{
cout << "Case " << t << ": " << << endl;
continue;
}
for (int i = ; i < num; ++i)
{
for (int j = i + ; j < num; ++j)
ans = min(ans, bfs(rec[i], rec[j]));
}
if (ans != INF)
cout << "Case " << t << ": " << ans << endl;
else
cout << "Case " << t << ": " << - << endl;
}
return ;
}

FZU2150 Fire Game的更多相关文章

  1. FZU2150 Fire Game —— BFS

    题目链接:https://vjudge.net/problem/FZU-2150 Problem 2150 Fire Game Accept: 2702    Submit: 9240 Time Li ...

  2. [宽度优先搜索] FZU-2150 Fire Game

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

  3. FZU2150 Fire Game BFS搜索

    题意:就是选两个点出发,只能走草坪,看能不能走完所有的草坪 分析:由于数据范围很小,所有枚举这两个点,事先将所有的草坪点存起来,然后任选两个点走,(两个点可以是同一个点) 然后BFS就行了 注:无解的 ...

  4. FZU2150 :Fire Game (双起点BFS)

    传送门:点我 题意:“#”是草,"."是墙,询问能不能点燃俩地方,即点燃俩“#”,把所有的草烧完,如果可以,那么输出最小需要的时间,如果不行输出-1 思路:暴力BFS,看到n和m都 ...

  5. 【FZU - 2150】Fire Game(bfs)

    --> Fire Game 直接写中文了 Descriptions: 两个熊孩子在n*m的平地上放火玩,#表示草,两个熊孩子分别选一个#格子点火,火可以向上向下向左向右在有草的格子蔓延,点火的地 ...

  6. 关于SequeezeNet中的Fire Module

    在论文<SQUEEZENET: ALEXNET-LEVEL ACCURACY WITH 50X FEWER PARAMETERS AND <0.5MB MODEL SIZE>中,作者 ...

  7. FZU 2150 Fire Game

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

  8. Fire

    Fire 分析: 首先,明确题意:b1,b2,--,bn 交换为b2,--,bn,b1,但这并不是意味着只能从b1开始交换,(这点从样例中可以看出),并且也不意味着交换的必须是连续的一串,可以是几个单 ...

  9. Android 轻量级输入校验库:Fire Eye

    Fire Eye是一款轻量级简单易用的Android校验库. FireEye 2.0 在 1.0 的基础上,全部重写了代码,并优化了架构,性能上和逻辑上都大大提升.只需要几行代码,即可验证用户输入,并 ...

随机推荐

  1. 从XMLHttpRequest中获取请求的URL

    在编写Ajax通用错误处理程序时,经常需要记录发生错误的XMLHttpRequest的请求URL.但查询文档,并未找到从XMLHttpRequest中获取请求URL的方法. 在javascript - ...

  2. Python+selenium第一个自动化脚本

    第一个自动化脚本(用Python写的) from selenium import webdriver  #从selenium导入webdriber driver=webdriber.Firefox() ...

  3. Java:Java 队列的遍历

    Java队列到底有没有可以遍历的功能呢?暂且试一下吧 参考链接:stl容器遍历测试 1.LinkedList实现简单遍历 for(Iter =LocTimesSerials.size()-1; iSe ...

  4. SLAM: SLAM的发展历程(WIKI)

    参考维基百科: https://en.wikipedia.org/wiki/Simultaneous_localization_and_mapping 你们叫他SLAM,我还是习惯叫他三维重建.... ...

  5. MFC和OpenCV结合

    最重要的一点:如何把OpenCV的框嵌入MFC的ID.. 把cv显示框嵌入 pic控件 cvNamedWindow("kalman"); HWND hWnd = (HWND) cv ...

  6. swiper和Navigator组件

    <swiper class="index-banner" indicator-dots="{{true}}" autoplay="{{true} ...

  7. :before和:after结合使用

    <div class="slider-block" id="block" style="left: 15.5px;" data=&qu ...

  8. PAT_A1142#Maximal Clique

    Source: PAT A1142 Maximal Clique (25 分) Description: A clique is a subset of vertices of an undirect ...

  9. 安装 Ubuntu 14.04 之后要做的一些事

    转自:  http://www.cnblogs.com/marcowei/p/3841342.html 安装 ubuntu14.04 之后要做的一些事 前言: 用 ubuntu14.04 也有一段时间 ...

  10. [luogu2624 HNOI2008]明明的烦恼 (prufer+高精)

    传送门 Solution 根据prufer序列做的题,具体可以看这里 还知道了一种避免高精除的方法quq Code #include <cmath> #include <cstdio ...