Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ue5
- Unreal Engine 5
- 트리
- 정렬
- 자료구조
- 다익스트라
- DFS
- 스택
- BFS
- 브루트포스
- 우선순위 큐
- 그리디 알고리즘
- 투 포인터
- 백트래킹
- 유니온 파인드
- XR Interaction Toolkit
- 구현
- 유니티
- 다이나믹 프로그래밍
- 알고리즘
- 그래프
- 문자열
- 백준
- 누적 합
- VR
- 재귀
- 수학
- Team Fortress 2
- 시뮬레이션
- c++
Archives
- Today
- Total
1일1알
백준 13913번 숨바꼭질 4 C++ 본문
bfs로 풀면 되는데, 어디서 왔는지를 저장하는 parent배열을 만들어서 경로를 추적했다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
vector<int> parent;
vector<bool> found;
bool CanGo(int pos) {
if (pos < 0 || pos>100000) return false;
if (found[pos]) return false;
return true;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
found = vector<bool>(100001, false);
parent = vector<int>(100001);
for (int i = 0; i <= 100000; i++) {
parent[i] = i;
}
int n, k;
cin >> n >> k;
queue<pair<int, int>> q;
q.push({ n,0 });
int ans = 0;
while (!q.empty()) {
auto curr = q.front();
q.pop();
if (curr.first == k) {
ans = curr.second;
break;
}
if (CanGo(curr.first - 1)) {
q.push({ curr.first - 1,curr.second + 1 });
found[curr.first - 1] = true;
parent[curr.first - 1] = curr.first;
}
if (CanGo(curr.first + 1)) {
q.push({ curr.first + 1,curr.second + 1 });
found[curr.first + 1] = true;
parent[curr.first + 1] = curr.first;
}
if (CanGo(curr.first * 2)) {
q.push({ curr.first * 2,curr.second + 1 });
found[curr.first * 2] = true;
parent[curr.first * 2] = curr.first;
}
}
vector<int> ansVec;
while (true) {
ansVec.push_back(k);
if (k == n) break;
k = parent[k];
}
reverse(ansVec.begin(), ansVec.end());
cout << ans << "\n";
for (auto a : ansVec) {
cout << a << " ";
}
}
'알고리즘' 카테고리의 다른 글
백준 1062번 가르침 C++ (0) | 2022.08.17 |
---|---|
백준 4485번 녹색 옷 입은 애가 젤다지? C++ (0) | 2022.08.16 |
백준 5052번 전화번호 목록 C++ (0) | 2022.08.14 |
백준 14402번 가장 긴 증가하는 부분 수열 4 C++ (0) | 2022.08.13 |
백준 1339번 단어 수학 C++ (0) | 2022.08.12 |