티스토리 뷰
백준 소스코드 [C++] 17071 숨바꼭질 5
#include <iostream>
#include <algorithm>
#include <queue>
#include <string.h>
#include <limits.h>
#include <vector>
#include <math.h>
#include <stack>
#include <bitset>
#include <string>
#include <set>
#include <map>
#include <unordered_map>
#include <sstream>
#include <cstdlib>
#define all(v) v.begin(), v.end()
#define pii pair<int, int>
#define pli pair<ll, int>
#define make_unique(v) sort(all(v)), v.erase(unique(all(v), v.end())
typedef long long ll;
using namespace std;
int n,m;
bool chk[500001][2];
int bfs(){
queue<int> q;
q.push(n);
chk[n][0]=true;
int time=1;
if(n==m) return 0;
while(!q.empty()){
int qSize = (int)q.size();
m+=time;
if(500000<m) return -1;
for(int size = 0; size<qSize;size++){
int here = q.front();
int there;
q.pop();
for(int i=0;i<3;i++){
if(i==0) there = here - 1;
else if(i==1) there = here + 1;
else there = here * 2;
if(0<=there && there<=500000 && !chk[there][time%2]){
chk[there][time%2]=true;
q.push(there);
}
}
}
if(chk[m][time%2]) return time;
time++;
}
return -1;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>n>>m;
cout<<bfs()<<'\n';
return 0;
}
'백준' 카테고리의 다른 글
백준 소스코드 [C++] 1761 정점들의 거리 (0) | 2021.04.16 |
---|---|
백준 소스코드 [C++] 2150 Strongly Connected Component (0) | 2021.04.15 |
백준 소스코드 [C++] 2325 개코전쟁 (0) | 2021.04.08 |
백준 소스코드 [C++] 13907 세금 (0) | 2021.04.05 |
백준 소스코드 [C++] 1738 골목길 (0) | 2021.04.04 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- WWDC16
- WWDC17
- 부스트캠프 6기
- 최단경로 알고리즘
- CompositionalLayout
- State Restoration
- 최단경로문제
- 에드몬드 카프 알고리즘
- 다익스트라 시간복잡도
- mach-o
- CPU와 Memory
- 벨만포드 알고리즘
- 강한 순환 참조
- 최단경로 문제
- Testable
- HIG
- 네트워크 플로우
- 네트워크 유량
- MeTal
- WWDC19
- WWDC21
- observeOn
- 포드 풀커슨 알고리즘
- 벨만포드 시간복잡도
- test coverage
- rxswift
- 컴퓨터 추상화
- IOS
- 코딩대회
- 최대 매칭
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함