반응형
문제
풀이
일반적인 BFS 문제였습니다.
다른 문제들과 거의 비슷한데, 벽을 1번까지는 뚫을 수 있으므로 방문체크를 3차원으로 합니다. (x, y, 벽 부순 횟수)
소스 코드
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
|
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
struct info
{
int x;
int y;
int wall;
int cnt;
};
int N, M;
int map[1001][1001];
int dx[] = { 0, 0, -1, 1 };
int dy[] = { -1, 1, 0, 0 };
bool visited[1001][1001][2];
void bfs() {
queue<info> q;
q.push({ 1, 1, 0, 1 });
visited[1][1][0] = true;
while (!q.empty()) {
int x = q.front().x;
int y = q.front().y;
int wall = q.front().wall;
int cnt = q.front().cnt;
q.pop();
if (x == M && y == N)
{
cout << cnt;
return;
}
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= 1 && nx <= M && ny >= 1 && ny <= N) {
int next = map[ny][nx];
// 벽 부순적이 없을 때, 방문하지 않았고 벽이면 변수 바꿔주고 push
if (next == 1 && wall == 0 && !visited[ny][nx][1]) {
visited[ny][nx][1] = true;
q.push({ nx, ny, 1, cnt + 1 });
}
// 벽이 아니고, 방문하지 않았다면 push
if (next == 0 && !visited[ny][nx][wall]) {
visited[ny][nx][wall] = true;
q.push({ nx, ny, wall, cnt + 1 });
}
}
}
}
cout << -1;
}
int main()
{
// 입력
cin >> N >> M;
for (int i = 1; i <= N; i++) {
string s;
cin >> s;
for (int j = 1; j <= s.length(); j++) {
map[i][j] = s[j - 1] - 48;
}
}
bfs();
return 0;
}
|
cs |
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 14499] 주사위 굴리기 C++ (0) | 2021.10.13 |
---|---|
[백준 1717] 집합의 표현 C++ (0) | 2021.10.11 |
[백준 1987] 알파벳 C++ (0) | 2021.10.08 |
[백준 14719] 빗물 C++ (0) | 2021.10.07 |
[백준 13398] 연속합 2 C++ (0) | 2021.10.07 |