-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13549.cpp
66 lines (51 loc) · 1.15 KB
/
13549.cpp
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
55
56
57
58
59
60
61
62
63
64
//
// Created by 융미 on 2019-05-04.
//*13549 숨바꼭질3
//주의할 점 : *2는 순간이동해서 0초이므로, 더 작은 값을 출력할 것
// 우선 순위 큐를 사용해도 좋을 것 같다
#include <iostream>
#include <queue>
#include <utility>
#include <algorithm>
#include <limits.h>
using namespace std;
#define MAX 100001
bool vis[MAX];
int n,k;
int bfs(){
queue<pair<int,int>> q;
q.push({n,0});
vis[n] = 1;
int ret = INT_MAX;
if(n == k)
return 0;
while(!q.empty())
{
auto cur = q.front();
q.pop();
int x = cur.first;
vis[x] = 1;
if(x == k) ret = min(ret,cur.second);
int nx = 2*x;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({nx,cur.second});
}
int nt = cur.second+1;
nx = x + 1;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({nx,nt});
}
nx = x - 1;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({nx,nt});
}
}
return ret;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
cout << bfs();
return 0;
}