728x90
5427번 불 이랑 완전히 똑같은 문제였습니다.
해설이 완전 동일하기때문에.. 굳이 글이나 주석으로 적진 않고 코드만 올리겠습니다.
혹시나 접근법이 궁금하시면 위에 링크를 눌러보세요
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
|
#include <iostream>
#include <queue>
using namespace std;
int r,c;
char arr[51][51];
bool visit[51][51];
queue<pair<int, int>> waterq;
queue<pair<int, int>> gosumq;
int dx[] = { 0,0,1,-1 };
int dy[] = { 1,-1,0,0 };
int bfs() {
int cnt = 0;
while (!gosumq.empty()) {
int water = waterq.size();
int gosum = gosumq.size();
cnt++;
while (water--) {
int x = waterq.front().first;
int y = waterq.front().second;
waterq.pop();
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 0 && ny >= 0 && nx < r && ny < c && !visit[nx][ny] && arr[nx][ny]=='.') {
visit[nx][ny] = true;
waterq.push({ nx,ny });
}
}
}
while (gosum--) {
int x = gosumq.front().first;
int y = gosumq.front().second;
gosumq.pop();
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (arr[nx][ny] == 'D')
return cnt;
if (nx >= 0 && ny >= 0 && nx < r && ny < c && !visit[nx][ny] && arr[nx][ny] == '.') {
visit[nx][ny] = true;
gosumq.push({ nx,ny });
}
}
}
}
return -1;
}
int main() {
cin >> r >> c;
for(int i=0 ; i<r ; i++)
for (int j = 0; j < c; j++) {
cin >> arr[i][j];
if (arr[i][j] == '*') {
waterq.push({ i,j });
visit[i][j] = true;
}
else if (arr[i][j] == 'S') {
gosumq.push({ i,j });
visit[i][j] = true;
}
}
int result = bfs();
if (result == -1)
cout << "KAKTUS";
else
cout << result;
return 0;
}
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 7576번] 토마토 C++ (0) | 2021.03.19 |
---|---|
[백준 2206번] 벽 부수고 이동하기 C++ (0) | 2021.03.19 |
[백준 5427번] 불 C++ (0) | 2021.03.18 |
[백준 2468번] 안전 영역 C++ (0) | 2021.03.18 |
[백준 11403번] 경로찾기 C++ (0) | 2021.03.17 |