uva11624 Fire! (双bfs)
Joe works in a maze. Unfortunately, portions of the maze have
caught on fire, and the owner of the maze neglected to create a fire
escape plan. Help Joe escape the maze.
Given Joe’s location in the maze and which squares of the maze
are on fire, you must determine whether Joe can exit the maze before
the fire reaches him, and how fast he can do it.
Joe and the fire each move one square per minute, vertically or
horizontally (not diagonally). The fire spreads all four directions
from each square that is on fire. Joe may exit the maze from any
square that borders the edge of the maze. Neither Joe nor the fire
may enter a square that is occupied by a wall.
Input
The first line of input contains a single integer, the number of test
cases to follow. The first line of each test case contains the two
integers R and C, separated by spaces, with 1 ≤ R, C ≤ 1000. The
following R lines of the test case each contain one row of the maze. Each of these lines contains exactly
C characters, and each of these characters is one of:
• #, a wall
• ., a passable square
• J, Joe’s initial position in the maze, which is a passable square
• F, a square that is on fire
There will be exactly one J in each test case.
Output
For each test case, output a single line containing ‘IMPOSSIBLE’ if Joe cannot exit the maze before the
fire reaches him, or an integer giving the earliest time Joe can safely exit the maze, in minutes.
Sample Input
2
4 4
####
#JF#
#..#
#..#
3 3
###
#J.
#.F
Sample Output
3
IMPOSSIBLE
题目链接
思路:由于题中没有说有几个起火点 所以 要用一个队列来维护。
当在T秒时人移动过后 对火点进行扩散
#include
#include
#include
using namespace std;
char map[1005][1005];
bool vis[1005][1005];
bool vis1[1005][1005];
int dir[4][2]={1,0,-1,0,0,1,0,-1};
int n,m,st_x,st_y;struct node
{int x,y,t;friend bool operator <(node a,node b){return a.t>b.t;}
};
struct node1
{int x,y,t;
};
bool limit(int x,int y)
{if(x<0||x==n||y<0||y==m||vis[x][y]||map[x][y]=='#'||map[x][y]=='F')return false;return true;
}
queuefire;
void fire_spread()
{node1 temp1,temp2;int T=fire.front().t;while(!fire.empty()){temp1=temp2=fire.front();// printf("**%d %d %d**\n",temp1.x,temp1.y,temp1.t);if(temp1.t>T)break;fire.pop();for(int i=0;i<4;i++){int xx=temp1.x+dir[i][1];int yy=temp1.y+dir[i][0];if(!vis1[xx][yy]&&map[xx][yy]!='#'&&xx>=0&&xx=0&&yys;while(!s.empty()) s.pop(); temp1.x=st_x,temp1.y=st_y,temp1.t=0;s.push(temp1);while(!s.empty()) {temp1=temp2=s.top();s.pop();//要让所有t时间的人走完 才对火进行扩散 if(temp1.t>fire.front().t)fire_spread();if(vis[temp1.x][temp1.y]) continue;if(temp1.x==0||temp1.x==n-1||temp1.y==0||temp1.y==m-1)return temp1.t;vis[temp1.x][temp1.y]=true;for(int i=0;i<4;i++){int xx=temp1.x+dir[i][0];int yy=temp1.y+dir[i][1];if(limit(xx,yy)){temp1.x=xx;temp1.y=yy;temp1.t++;s.push(temp1);}temp1=temp2;}}return -1;
}
int main()
{int ncase;scanf("%d",&ncase);while(ncase--){memset(map,false,sizeof(map));memset(vis,false,sizeof(vis));memset(vis1,false,sizeof(vis1));while(!fire.empty()) fire.pop();scanf("%d %d",&n,&m);for(int i=0;i
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
