728x90
https://www.acmicpc.net/problem/13549
중요풀이
그래프 탐색을 기반으로 너비 우선 탐색 기법을 활용하여 풀이를 진행하였습니다.
#include <iostream>
#include <queue>
using namespace std;
bool check[150001];
int time[150001];
void bfs(int start,int end) {
queue<int>q;
q.push(start);
check[start] = true;
while (!q.empty()) {
int x = q.front();
q.pop();
if (x == end) {
cout << time[x];
return;
}
if (2 * x < 150001 && (!check[2 * x] || time[2 * x] > time[x])) {
check[2 * x] = true;
time[2 * x] = time[x];
q.push(2 * x);
}
if (x < 150001 && (!check[x + 1] || time[x + 1] > time[x] + 1)) {
check[x + 1] = true;
time[x + 1] = time[x] + 1;
q.push(x + 1);
}
if (x - 1 >= 0 && (!check[x - 1] || time[x - 1] > time[x] + 1)) {
check[x - 1] = true;
time[x - 1] = time[x] + 1;
q.push(x - 1);
}
}
}
int main(void) {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int s, d;
cin >> s >> d;
bfs(s, d);
return 0;
}
728x90
'🥇Baekjoon Solutions > 그래프(BFS, DFS, 다익스트라, 플로이드 와샬)' 카테고리의 다른 글
[C++] 백준 11404번: 플로이드 (0) | 2021.08.24 |
---|---|
[C++] 플로이드 와샬(Floyd Warshall) 알고리즘 개념 (0) | 2021.08.24 |
[C++] 백준 11779번: 최소비용 구하기 2 (0) | 2021.08.23 |
[C++] 다익스트라(Dijkstra) 알고리즘 개념 (0) | 2021.08.23 |
[C++] DFS(Depth First Search), BFS(Breath First Search) 개념 (0) | 2021.08.23 |
댓글