UVa 11624 - Fire!

Contents

  1. 1. Problem
  2. 2. Solution
  3. 3. Code

Problem

題目網址

有一個人要從起火的迷宮中逃走,火每分鐘會往上下左右四格蔓延,人每分鐘也可以往上下左右走,只要逃到邊界即算逃出。
注意起火點不一定只有一處。

Solution

用兩個 std::queue 同時來對人和火做 BFS ,並記下每次的時間:
火: path[x][y] = path[now.x][now.y] - 1 -1,-2,-3…
人: path[x][y] = path[now.x][now.y] + 1 1,2,3…

每次檢查 std::queue 中的節點時,要把同一時間會走到的點,在同一輪作完。才不會有人走完,火卻還沒到或人還沒走,火已經來了的情況發生。

Code

UVa 11624UVa 11624 - Fire
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146

#include<cstdio>
#include<queue>
#define IN_BORDER(R,C,x,y) ((x)>0&&(x)<=(R)&&(y)>0&&(y)<=(C))

struct Coord
{
int x, y;
Coord(){}
Coord(int _x, int _y) :x(_x), y(_y){}
};
char maze[1001][1001];
int path[1001][1001];
std::queue<Coord> manQ, fireQ;

int BFS(int R, int C);
int main()
{
int Case, R, C;
scanf("%d", &Case);

while (Case--)
{
scanf("%d%d", &R, &C);

//init
int i;
for (i = 0; i <= R; i++)
for (int j = 0; j <= C; j++)
path[i][j] = 0;
while (!manQ.empty())
manQ.pop();
while (!fireQ.empty())
fireQ.pop();

//input
for (int i = 1; i <= R; i++)
{
getchar();
for (int j = 1; j <= C; j++)
{
maze[i][j] = getchar();
if (maze[i][j] == 'F')
{
fireQ.push(Coord(i, j));
path[i][j] = -1;
}
else if (maze[i][j] == '#')
path[i][j] = -1;
else if (maze[i][j] == 'J')
{
manQ.push(Coord(i, j));
path[i][j] = 1;
}
}
}

int ans = BFS(R, C);
if (ans == -1)
puts("IMPOSSIBLE");
else
printf("%d\n", ans);
}

return 0;
}
int BFS(int R, int C)
{
const int dir[4][2] = { { 1, 0 }, { 0, 1 }, { -1, 0 }, { 0, -1 } };

int time, i;
while (!manQ.empty())
{
Coord now;
int x, y;
//先處理火
if (!fireQ.empty())
{
now = fireQ.front();
/*
同一時間的一起處理好
火的時間為:-1,-2,-3....
*/
for (time = path[now.x][now.y]; time == path[now.x][now.y]; now = fireQ.front())
{
fireQ.pop();
for (i = 0; i < 4; i++)
{
x = now.x + dir[i][0];
y = now.y + dir[i][1];
if (IN_BORDER(R, C, x, y))
if (!path[x][y] && maze[x][y] == '.')
{
path[x][y] = path[now.x][now.y] - 1;
fireQ.push(Coord(x,y));
}
}

if (fireQ.empty())
break;
}
}

//人的位置
now = manQ.front();
/*
同一時間人可到的位置
人的時間為:1,2,3...
*/
for (time = path[now.x][now.y]; time == path[now.x][now.y]; now = manQ.front())
{
if (now.x == R || now.y == C || now.x == 1 || now.y == 1)//已經到邊界了
return path[now.x][now.y];

manQ.pop();
for (i = 0; i < 4; i++)
{
x = now.x + dir[i][0];
y = now.y + dir[i][1];
if (IN_BORDER(R, C, x, y))
if (!path[x][y] && maze[x][y] == '.')
{
path[x][y] = path[now.x][now.y] + 1;
manQ.push(Coord(x, y));
}
}

if (manQ.empty())
break;
}

#ifdef DEBUG
for (int i = 1; i <= R; i++)
{
for (int j = 1; j <= C; j++)
printf("%2d", path[i][j]);
putchar('\n');
}
putchar('\n');
#endif

}

return -1;
}