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
- XR Interaction Toolkit
- 누적 합
- 그래프
- Unreal Engine 5
- 시뮬레이션
- c++
- ue5
- 알고리즘
- 유니티
- 유니온 파인드
- 우선순위 큐
- 다익스트라
- 구현
- 트리
- 자료구조
- 다이나믹 프로그래밍
- 투 포인터
- 그리디 알고리즘
- DFS
- 재귀
- 스택
- BFS
- 수학
- 백트래킹
- VR
- 브루트포스
- 정렬
- Team Fortress 2
- 백준
- 문자열
Archives
- Today
- Total
1일1알
백준 16397번 탈출 C++ 본문
https://www.acmicpc.net/problem/16397
bfs
#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;
int n, t, g;
vector<bool> found;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> t >> g;
found = vector<bool>(100000, false);
queue<pair<int,int>> q;
q.push({ n,0 });
found[n] = true;
int ans = -1;
while (!q.empty()) {
auto curr = q.front();
int currVal = curr.first;
int currCnt = curr.second;
if (currVal == g) {
ans = currCnt;
break;
}
q.pop();
{
int nextVal = currVal * 2;
if (nextVal < 100000 && nextVal != 0) {
string str = to_string(nextVal);
str[0] = str[0] - 1;
nextVal = stoi(str);
if (found[nextVal] == false && currCnt < t) {
found[nextVal] = true;
q.push({ nextVal,currCnt + 1 });
}
}
}
{
int nextVal = currVal + 1;
if (nextVal < 100000) {
if (found[nextVal] == false && currCnt < t) {
found[nextVal] = true;
q.push({ nextVal,currCnt + 1 });
}
}
}
}
if (ans == -1) cout << "ANG";
else cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 1461번 도서관 C++ (0) | 2023.03.26 |
---|---|
백준 17213번 과일 서리 C++ (0) | 2023.03.24 |
백준 18353번 병사 배치하기 C++ (0) | 2023.03.22 |
백준 1965번 상자넣기 C++ (0) | 2023.03.21 |
백준 14235번 크리스마스 선물 C++ (0) | 2023.03.20 |