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. 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 should have the OOXX game which decrypted in the last problem, who knows .)
You can assume that the grass in the board wowould never burn out and the empty grid wowould never get fire.
Note that the two grids they choose can be the same.
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 <symbol · blank "http://www.bkjia.com/kf/ware/vc/" target = "_ blank" class = "keylink"> vcD4KCjxoMj48aW1nIHNyYz0 = "http://www.bkjia.com/uploads/allimg/141116/04354H3L-0.gif" alt = "\"> 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.
Sample Input43 3. #. ###. #. 3. #. #. #. #. 3 3... #. #... 3 3 ###.. ##. # Sample OutputCase 1: 1 Case 2:-1 Case 3: 0 Case 4: 2
Â Ò â £° Á ½ öö ö °? äüé Õ ¹ â ² Ý µø £;************************* n, m <= 10 £;************************** BFS) çó × É Ù Ê ± ¼ ä£ £;£ ;*********************************************************
#include
#include
#include
#include#include
typedef long long LL;using namespace std;#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )#define CLEAR( a , x ) memset ( a , x , sizeof a )const int INF=0x3f3f3f3f;int dr[][2]={{0,1},{0,-1},{-1,0},{1,0}};//typedef pair
pill;struct point { int x, y; point() {} point(int a, int b) { x = a; y = b; }};char mp[20][20];int vis[20][20];int d[20][20];int n,m,t,ans;int bfs(int x1,int y1,int x2,int y2){ CLEAR(d,INF); queue
q; point st; d[x1][y1]=d[x2][y2]=0; q.push(point(x1,y1)); q.push(point(x2,y2)); while(!q.empty()) { st=q.front(); q.pop(); REP(i,4) { int xx=st.x+dr[i][0]; int yy=st.y+dr[i][1]; if(xx<0||xx>=n||yy<0||yy>=m) continue; if(mp[xx][yy]!='#') continue; if(d[xx][yy]>d[st.x][st.y]+1) { d[xx][yy]=d[st.x][st.y]+1; q.push(point(xx,yy)); } } } int sum=0; REP(i,n) { REP(j,m) { if(mp[i][j]=='#') sum=max(sum,d[i][j]); } } return sum;}void solve(){ ans=INF; REP(i,n) { REP(j,m) { if(mp[i][j]=='#') { REP(k,n) { REP(l,m) { if(k==i&&l<=j) continue;//¸ÄÁ˾ͳ¬Ê± if(mp[k][l]=='#') ans=min(ans,bfs(i,j,k,l)); } } } } }// cout<<"2333 "<
¸½ÉÏÎҵij¬Ê±µÄ£º
#include
#include
#include
#include#include
typedef long long LL;using namespace std;#define REPF( i , a , b ) for ( int i = a ; i <= b ; ++ i )#define REP( i , n ) for ( int i = 0 ; i < n ; ++ i )#define CLEAR( a , x ) memset ( a , x , sizeof a )const int INF=0x3f3f3f3f;int dr[][2]={{-1,0},{1,0},{0,-1},{0,1}};typedef pair
pill;char mp[15][15];int vis[15][15];int d[15][15];int n,m,t,ans;int bfs(int x1,int y1,int x2,int y2){ CLEAR(d,INF); queue
q; pill st; d[x1][y1]=d[x2][y2]=0; q.push(make_pair(x1,y1)); q.push(make_pair(x2,y2)); while(!q.empty()) { st=q.front(); q.pop(); REP(i,4) { int xx=st.first+dr[i][0]; int yy=st.second+dr[i][1]; if(xx<0&&xx>=n&&yy<0&&yy>=m) continue; if(mp[xx][yy]!='#') continue; if(d[xx][yy]>d[st.first][st.second]+1) { d[xx][yy]=d[st.first][st.second]+1; q.push(make_pair(xx,yy)); } } } int sum=0; REP(i,n) { REP(j,m) { if(mp[i][j]=='#') sum=max(sum,d[i][j]); } } return sum;}void solve(){ ans=INF; REP(i,n) { REP(j,m) { if(mp[i][j]=='#') { REP(k,n) { REP(l,m) { if(k<=i&&l<=j) continue; if(mp[k][l]=='#') ans=min(ans,bfs(i,j,k,l)); } } } } }// cout<<"2333 "<>t; int cas=1; while(t--) { cin>>n>>m; int num=0; REP(i,n) { REP(j,m) { cin>>mp[i][j]; if(mp[i][j]=='#') num++; } } printf("Case %d: ",cas++); if(num<=2) { cout<<0<