algorithm/BOJ
BOJ 3055번 탈출
_JunHo
2020. 2. 4. 01:23
BOJ : https://www.acmicpc.net/problem/3055
github : https://github.com/junho0956/Algorithm/blob/master/3055/3055/%EC%86%8C%EC%8A%A4.cpp
고슴도치는 "물이 찰 예정이 아닌 곳" 으로 이동할 수 있습니다.
그러므로 물에 대한 BFS 를 먼저 탐색한 후에, 고슴도치가 갈 수 있는 곳으로 BFS 를 탐색해주시면 됩니다.
** 고슴도치가 있던 자리에는 물이 차도 상관없습니다. 고슴도치는 물이 찰 예정인 곳에서는 움직일 수 있습니다 **
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
|
#include <iostream>
#include <queue>
using namespace std;
typedef pair<pair<int,int>, int> pii;
int r, c;
char arr[50][50];
bool gvisit[50][50];
bool wvisit[50][50];
int my[4] = { -1,1,0,0 };
int mx[4] = { 0,0,1,-1 };
queue<pii> gos;
queue<pii> water;
bool success = false;
int ans;
void escape() {
int day = 0;
while (!success) {
int cnt = water.front().second;
if (day != cnt) break;
water.pop();
if (wvisit[y][x]) continue;
wvisit[y][x] = true;
for (int i = 0; i < 4; i++) {
int yy = y + my[i];
int xx = x + mx[i];
if (yy >= 0 && yy < r && xx >= 0 && xx < c) {
if (!wvisit[yy][xx] && arr[yy][xx] != 'D' && arr[yy][xx] != 'X') {
arr[yy][xx] = '*';
}
}
}
}
bool move = false;
int cnt = gos.front().second;
if (cnt != day) break;
gos.pop();
if (arr[y][x] == 'D') {
success = true;
ans = day;
break;
}
if (gvisit[y][x]) continue;
gvisit[y][x] = true;
for (int i = 0; i < 4; i++) {
int yy = y + my[i];
int xx = x + mx[i];
if (yy >= 0 && yy < r && xx >= 0 && xx < c) {
if (!gvisit[yy][xx] && arr[yy][xx] != '*' && arr[yy][xx] != 'X') {
move = true;
if (arr[yy][xx] == '.') arr[yy][xx] = 'S';
}
}
}
}
if (!move) break;
day++;
}
}
int main() {
ios::sync_with_stdio(0), cin.tie(0);
cin >> r >> c;
for (int i = 0; i < r; i++){
for (int j = 0; j < c; j++) {
cin >> arr[i][j];
}
}
escape();
if (success) cout << ans;
else cout << "KAKTUS";
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|