FZU 2150 Fire Game (暴力BFS)

题目链接click here~~

题目大意】:

两个熊孩子要把一个正方形上的草都给烧掉,他俩同时放火烧,烧第一块的时候是不花时间的,每一块着火的都可以在下一秒烧向上下左右四块#代表草地,.代表着不能烧的。问你最少花多少时间可以烧掉,如果烧不掉就输出-1

解题思路】:

数据比较弱的情况下直接暴力枚举每块草坪上可以放的位置,比较高端的写法目前没有想到,以后想到了文章更新下~~

ps:由于一个细节没注意,导致WA了几乎一页,还以为FZU 判题出错了,后来突然发现每次从队列里拿出队首的元素,才是和maxx比较时间的最大可能!

代码:

//FZU 2150
#ifndef _GLIBCXX_NO_ASSERT
#include <cassert>
#endif

#include <cctype>
#include <cerrno>
#include <cfloat>
#include <ciso646>
#include <climits>
#include <clocale>
#include <cmath>
#include <csetjmp>
#include <csignal>
#include <cstdarg>
#include <cstddef>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <ctime>
// C++
#include <algorithm>
#include <bitset>
#include <complex>
#include <deque>
#include <exception>
#include <fstream>
#include <functional>
#include <iomanip>
#include <ios>
#include <iosfwd>
#include <iostream>
#include <istream>
#include <iterator>
#include <limits>
#include <list>
#include <locale>
#include <map>
#include <memory>
#include <new>
#include <numeric>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <stdexcept>
#include <streambuf>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>

using namespace std;

#define rep(i,j,k) for(int i=(int)j;i<(int)k;++i)
#define per(i,j,k) for(int i=(int)j;i>(int)k;--i)
#define lowbit(a) a&-a
#define Max(a,b) a>b?a:b
#define Min(a,b) a>b?b:a
#define mem(a,b) memset(a,b,sizeof(a))

typedef long long LL;
typedef unsigned long long LLU;
typedef double db;
const int N=105;
const int inf=0x3f3f3f3f;
int n,m,T;

char mat[25][25];
bool vis[N][N];

int dir4[4][2]= {{1,0},{0,1},{-1,0},{0,-1}};
int dir8[8][2]= {{1,0},{1,1},{0,1},{-1,1},{-1,0},{-1,-1},{0,-1},{1,-1}};
int dir6[6][3]= {{0,0,1},{0,0,-1},{0,1,0},{0,-1,0},{1,0,0},{-1,0,0}};///六个方向

struct node
{
    int Coor_x;
    int Coor_y;
    int step;
} q,p,mapp[N];

bool ok(int dx,int dy)
{
    if(dx>=0&&dx<n&&dy>=0&&dy<m) return true;
    return false;
}
int ans;
void getMat()
{
    ans=0;
    for(int i=0; i<n; ++i){
        scanf("%s",mat[i]);
        for(int j=0; j<m; ++j){
            if(mat[i][j]=='#'){
                ans++;
                mapp[ans].Coor_x=i;
                mapp[ans].Coor_y=j;
            }
        }
    }
}
int bfs(int x1,int y1,int x2,int y2)
{
    int maxx=0;
    q.Coor_x=x1,q.Coor_y=y1,q.step=0;
    p.Coor_x=x2,p.Coor_y=y2,p.step=0;
    queue <node> vall;
    vall.push(q);
    vall.push(p);
    while(!vall.empty()){
        node q1,p1=vall.front();
        vall.pop();
        for(int i=0; i<4; ++i){
            int dx=p1.Coor_x+dir4[i][0];
            int dy=p1.Coor_y+dir4[i][1];
            if(ok(dx,dy)&&!vis[dx][dy]&&mat[dx][dy]=='#'){
                vis[dx][dy]=true;
                q1.Coor_x=dx;
                q1.Coor_y=dy;
                q1.step=p1.step+1;
                vall.push(q1);
            }
        }
        maxx=Max(maxx,p1.step);///大坑!,注意和vall.front() 比较
    }
    return maxx;
}
int main()
{
    scanf("%d",&T);
    int tot=1;
    while(T--){
        scanf("%d%d",&n,&m);
        getMat();
        printf("Case %d: ",tot++);
        if(ans<=2){
            puts("0");
            continue;
        }
        int minn=inf;
        for(int i=0; i<ans; ++i){
            for(int j=i; j<ans; ++j){
                mem(vis,false);
                vis[mapp[i].Coor_x][mapp[i].Coor_y]=true;
                vis[mapp[j].Coor_x][mapp[j].Coor_y]=true;
                bool flag=false;
                int _minn=bfs(mapp[i].Coor_x,mapp[i].Coor_y,mapp[j].Coor_x,mapp[j].Coor_y);
                for(int k=0; k<n; ++k){
                    for(int l=0; l<m; ++l){
                        if(mat[k][l]!='#') continue;
                        if(!vis[k][l]){
                            flag=true;
                            break;
                        }
                    }
                }
                if(!flag) minn=Min(_minn,minn);
            }
        }
        if(minn==inf) puts("-1");
        else printf("%d\n",minn);
    }
    return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-13 09:28:37

FZU 2150 Fire Game (暴力BFS)的相关文章

FZU 2150 Fire Game(DFS+BFS)

题意  在n*m个格子组成的草地上   你可以选择两个是草('#')的格子点燃  每个点燃的格子在下一秒其四个相邻的是草的格子也会被点燃   问点燃所有的草至少需要多少秒 DFS和BFS的综合  如果'#'连通块的数量大于2个是肯定不能点燃所有的  先dfs判断连通块个数  再bfs找出选哪两个格子可以最快把草烧完 #include <map> #include <cstdio> #include <cstring> using namespace std; const

FZU 2150 Fire Game(BFS)

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. Firstl

FZU 2150 Fire Game(BFS)

Fire Game Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u 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 cons

FZU 2150 Fire Game(点火游戏)

p.MsoNormal { margin: 0pt; margin-bottom: .0001pt; text-align: justify; font-family: Calibri; font-size: 10.5000pt } h2 { margin-top: 5.0000pt; margin-bottom: 5.0000pt; text-align: left; font-family: 宋体; font-weight: bold; font-size: 18.0000pt } h3 {

FZU 2150 Fire Game --两点同步搜索

枚举两点,然后同步BFS,看代码吧,很容易懂的. 代码: #include <iostream> #include <cstdio> #include <cstring> #include <cmath> #include <cstdlib> #include <algorithm> #include <queue> #define Mod 1000000007 using namespace std; struct Po

(FZU 2150) Fire Game (bfs)

题目链接:http://acm.fzu.edu.cn/problem.php?pid=2150 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 a

fzu 2150 Fire Game 【技巧BFS】

题目:fzu2150 Fire Game 题意:给出一个m*n的图,'#'表示草坪,' . '表示空地,然后可以选择在任意的两个草坪格子点火,火每 1 s会向周围四个格子扩散,问选择那两个点使得燃烧所有的草坪花费时间最小? 分析:这个题目如果考虑技巧的话有点难度,但是鉴于数据范围比较小,我们可以暴力枚举任意的草坪所在的点,然后两个点压进队列里面BFS,去一个满足条件的最小值即可. 顺便说一下 fzu 2141 Sub-Bipartite Graph 的思路,比赛的时候没有做出来. 这个题目想的复

FZU - 2150 Fire Game(两点bfs)

题目大意: 给你一个n*m的图,里面有草也有空地(#代表草).现在有两个人各在一块草地点火要烧掉这些草,并且燃烧的草可以向上下左右四个方向蔓延,问最少多长时间可以将所有的草都烧完,不能全部烧完输出-1. 两个起点的BFS,感觉和求最短路差不多,依次枚举两个起点,找到步数最多的那个草地,再从每次枚举的结果中找最小的. #include<iostream> #include<cstdio> #include<cmath> #include<algorithm>

(简单) FZU 2150 Fire Game ,Floyd。

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. Firstl