FZU 2150 Fire Game(点火游戏)
FZU 2150 Fire Game(点火游戏)
Time Limit: 1000 mSec Memory Limit : 32768 KB
Problem Description - 题目描述
Fat brother and Maze are playing a kind of special (hentai) game on an N*M board (N rows, M columns). At the beginning, each grid of this board is consisting of grass or just empty and then they start to fire all the grass. Firstly they choose two grids which are consisting of grass and set fire. As we all know, the fire can spread among the grass. If the grid (x, y) is firing at time t, the grid which is adjacent to this grid will fire at time t+1 which refers to the grid (x+1, y), (x-1, y), (x, y+1), (x, y-1). This process ends when no new grid get fire. If then all the grid which are consisting of grass is get fired, Fat brother and Maze will stand in the middle of the grid and playing a MORE special (hentai) game. (Maybe it’s the OOXX game which decrypted in the last problem, who knows.)
You can assume that the grass in the board would never burn out and the empty grid would never get fire.
Note that the two grids they choose can be the same.
胖哥和Maze 正用一块N*M的板子(N行,M列)玩一种特别(hentai)的游戏。开始时,板上的每个格子里要么是杂草丛生,要么空空如也。他们正准备烧掉所有的杂草。首先他们选了两个草格子点火。众所周知,火势可以沿着杂草传播。如果格子(x, y)在时间t被点燃,火势则会在t+1的时候蔓延到相邻格子(x+, y), (x-, y), (x, y+), (x, y-)上。这个过程会持续到火势无法传递。如果所有草格子都被点燃,胖哥和Maze 会站在格子中间并玩一个更加特别(hentai)的游戏。(或许是在最后一题后被解码的OOXX游戏,天知道。)
你可以认为格子无法烧坏,并且空格子无法燃烧。
注意,被选择的两个格子可以是同一个。
CN
Input - 输入
The first line of the date is an integer T, which is the number of the text cases.
Then T cases follow, each case contains two integers N and M indicate the size of the board. Then goes N line, each line with M character shows the board. “#” Indicates the grass. You can assume that there is at least one grid which is consisting of grass in the board.
1 <= T <=100, 1 <= n <=10, 1 <= m <=10
数据的第一行为一个整数T,表示测试用例的数量。
随后T行,每个用例有两个表示板子大小的整数N和M。随后N行,每行M个表示格子的字符。“#”表示杂草。你可以任务板上至少有一个草格子。
<= T <=, <= n <=, <= m <=
CN
Output - 输出
For each case, output the case number first, if they can play the MORE special (hentai) game (fire all the grass), output the minimal time they need to wait after they set fire, otherwise just output -1. See the sample input and output for more details.
对于每个测试用例,先输出用例编号,如果他们可以玩更特别(hentai)的游戏(点燃所有杂草),输出他们点火后需要等待的最短时间,否则输出-。详情参照输入输出样例。
CN
Sample Input - 输入样例
4
3 3
.#.
###
.#.
3 3
.#.
#.#
.#.
3 3
...
#.#
...
3 3
###
..#
#.#
Sample Output - 输出样例
Case 1: 1
Case 2: -1
Case 3: 0
Case 4: 2
题解
数据不大,直接无脑BFS,就是多了一个起点。
先判断杂草区域是否多余两片(只能点2次火),再进行BFS,比较每次的时间即可。
代码 C++
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <queue>
#define INF 0x7F7F7F7F
#define MX 15
struct Point{
int y, x;
}pit[MX*MX], now, nxt;
char map[MX][MX];
int data[MX][MX], fx[] = { , , -, , , -, , };
std::queue<Point> q;
int main(){
int t, it, n, m, opt, tmpOPT, i, j, k, iP, siz, sum, tmp;
for (it = scanf("%d", &t); it <= t; ++it){
opt = INF; iP = siz = sum = ;
memset(map, '.', sizeof map);
scanf("%d%d ", &n, &m);
for (i = ; i <= n; ++i) gets(&map[i][]); for (i = ; i <= n; ++i) for (j = ; j <= m; ++j){
if (map[i][j] != '#') continue;
now.y = i; now.x = j;
q.push(now); ++siz; map[now.y][now.x] = '@';
while (!q.empty()){
now = q.front(); q.pop();
pit[iP++] = now; ++sum;
for (k = ; k < ; k += ){
nxt.y = now.y + fx[k]; nxt.x = now.x + fx[k + ];
if (map[nxt.y][nxt.x] == '#'){ q.push(nxt); map[nxt.y][nxt.x] = '@'; }
}
}
}
if (siz>){ printf("Case %d: -1\n", it); continue; }
for (i = ; i < iP; ++i) for (j = i; j < iP; ++j){
memset(data, 0x7F, sizeof data);
data[pit[i].y][pit[i].x] = data[pit[j].y][pit[j].x] = ;
q.push(pit[i]); q.push(pit[j]); tmpOPT = ;
siz = i == j ? : ;
while (!q.empty()){
now = q.front(); q.pop();
tmpOPT = data[now.y][now.x]; tmp = tmpOPT + ;
for (k = ; k < ; k += ){
nxt.y = now.y + fx[k]; nxt.x = now.x + fx[k + ];
if (map[nxt.y][nxt.x] == '@' && data[nxt.y][nxt.x] == INF){
q.push(nxt); data[nxt.y][nxt.x] = tmp; ++siz;
}
}
}
if (siz == sum) opt = std::min(opt, tmpOPT);
}
printf("Case %d: %d\n", it, opt);
}
return ;
}
FZU 2150 Fire Game(点火游戏)的更多相关文章
- FZU 2150 Fire Game
Fire Game Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u Submit St ...
- fzu 2150 Fire Game 【身手BFS】
称号:fzupid=2150"> 2150 Fire Game :给出一个m*n的图,'#'表示草坪,' . '表示空地,然后能够选择在随意的两个草坪格子点火.火每 1 s会向周围四个 ...
- FZU 2150 fire game (bfs)
Problem 2150 Fire Game Accept: 2133 Submit: 7494Time Limit: 1000 mSec Memory Limit : 32768 KB ...
- FZU 2150 Fire Game (暴力BFS)
[题目链接]click here~~ [题目大意]: 两个熊孩子要把一个正方形上的草都给烧掉,他俩同一时候放火烧.烧第一块的时候是不花时间的.每一块着火的都能够在下一秒烧向上下左右四块#代表草地,.代 ...
- (FZU 2150) Fire Game (bfs)
题目链接:http://acm.fzu.edu.cn/problem.php?pid=2150 Problem Description Fat brother and Maze are playing ...
- 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 ...
- FZU 2150 Fire Game 广度优先搜索,暴力 难度:0
http://acm.fzu.edu.cn/problem.php?pid=2150 注意这道题可以任选两个点作为起点,但是时间仍足以穷举两个点的所有可能 #include <cstdio> ...
- 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) ...
- 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 ...
随机推荐
- Django ORM 操作 必知必会13条 单表查询
ORM 操作 必知必会13条 import os # if __name__ == '__main__': # 当前文件下执行 os.environ.setdefault('DJANGO_SETTIN ...
- nodejs核心技术
一.知识结构: http模块:配置简单 的web服务,npm/cnpm工具 express框架:express中间件进行服务配置:路由:请求处理: DB服务:学习使用mysql关系型数据库: web接 ...
- .NET创建一个即是可执行程序又是Windows服务的程序
不得不说,.NET中安装服务很麻烦,即要创建Service,又要创建ServiceInstall,最后还要弄一堆命令来安装和卸载. 今天给大家提供一种方式,直接使用我们的程序来安装/卸载服务,并且可以 ...
- python初学者必看的学习路线
Python是近几年比较火的编程语言之一,因为人工智能的火爆,让很多人都想从事python开发.很多零基础学员在学习python的时候都会走一些弯路,下面小编就为大家分享python学习路线图,帮助零 ...
- 从实践出发:微服务布道师告诉你Spring Cloud与Spring Boot他如何选择
背景 随着公司业务量的飞速发展,平台面临的挑战已经远远大于业务,需求量不断增加,技术人员数量增加,面临的复杂度也大大增加.在这个背景下,平台的技术架构也完成了从传统的单体应用到微服务化的演进. 系统架 ...
- python之auto鼠标/键盘事件
mouse_key.py import os import time import win32gui import win32api import win32con from ctypes impor ...
- shell 脚本的时间差计算
在某个时间点上增加一段时间 将时间转为时间戳,然后增加时间 [root@~]# date +%s -d '2017-05-27 12:0:0' 1495857600 [root@ ~]# new_ti ...
- 混合模式程序集是针对“v2.0.50727”版的运行时生成的,在没有配置其他信息的情况
在app.config中的configuration节内添加子节Startup,详细如下: <?xml version="1.0"?><configuration ...
- 一图解释PHPstorm代码片段设置---附官方文档(转)
参考:https://blog.csdn.net/thinkthewill/article/details/81145106 资料 设置片段[官方设置教程] 设置变量对话框[官方设置教程] phpst ...
- history 基本用法
设置记录保存的数量,默认1000: /etc/profile 记录保存文件,可用来查看或修改记录: ~/.bash_history 如果是root用户就是在/root/.bash_history 直接 ...