티스토리 뷰
BFS를 이용한 문제이다
층의 개념을 가져온다고 생각하자 => dist[x][y][층] 이런식으로 테이블을 잡는다
벽을 부술때마다 우리는 한층 씩 올라간다!
bfs를 돌리고 목적지에서 min(dist[x][y][0~1층])이 답이된다
갈 수 없는 경우는 구해서 처리해주자
문제를 풀 때 다익스트라로 될거라고 착각하고 열심히 틀렸다
0은 가중치 1, 1은 가중치 100만을 주고 마지막에 백만으로 나누고 나머지를 구했다
다익스트라로 나처럼 풀면 한개만 부수고 최단거리인 경우를 못찾는다
=> (1개부수고 최단거리) 대신에 (안부수고 더 긴거리)를 선택한다
잘 생각해서 풀자..!!
소스코드
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
|
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
int n, m, map[1010][1010],dist[1010][1010][2];
bool check[1010][1010][2];
int dx[4] = { 0,0,-1,1 };
int dy[4] = { 1,-1,0,0 };
int main() {
scanf(" %d %d", &n, &m);
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
scanf(" %1d", &map[i][j]);
}
}
queue<pair<pair<int, int>, int>> q;
q.push({ {0,0},0 });
check[0][0][0] = true;
dist[0][0][0] = 1;
while (!q.empty()) {
int cnt = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (0 <= nx && nx < n && 0 <= ny && ny < m) {
if (cnt == 0) {
if (!check[nx][ny][map[nx][ny]]) {
check[nx][ny][map[nx][ny]] = true;
dist[nx][ny][map[nx][ny]] = dist[x][y][0] + 1;
q.push({ {nx,ny},map[nx][ny] });
}
}
else {
if (!map[nx][ny] && !check[nx][ny][1]) {
check[nx][ny][1] = true;
dist[nx][ny][1] = dist[x][y][1] + 1;
q.push({ {nx,ny},1 });
}
}
}
}
}
int a = dist[n - 1][m - 1][0];
int b = dist[n - 1][m - 1][1];
if (a == 0 && b == 0) puts("-1");
else if (a == 0 && b != 0) printf("%d\n", b);
else if (a != 0 && b == 0) printf("%d\n", a);
else printf("%d\n", min(a, b));
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
'알고리즘 > BOJ' 카테고리의 다른 글
[백준] 3020 개똥벌레 (0) | 2019.08.27 |
---|---|
[백준] 2632 피자판매 (0) | 2019.08.27 |
[백준] 1194 달이 차오른다, 가자. (0) | 2019.08.27 |
[백준] 1837 암호제작 (0) | 2018.07.30 |
[백준] 12908 텔레포트 3 (0) | 2018.07.23 |
댓글