-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path13549_2.cpp
65 lines (50 loc) · 1.12 KB
/
13549_2.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 우선 순위 큐 사용 버전
#include <iostream>
#include <queue>
#include <utility>
#include <algorithm>
#include <vector>
#include <functional>
using namespace std;
#define MAX 100001
bool vis[MAX];
int n,k;
int bfs(){
priority_queue<pair<int,int>, vector<pair<int,int>>, greater<pair<int,int>>> q;
q.push({0,n});
vis[n] = 1;
if(n == k)
return 0;
while(!q.empty())
{
auto cur = q.top();
q.pop();
int x = cur.second;
if(x == k) return cur.first;
int nx = 2*x;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({cur.first,nx});
vis[nx] = 1;
}
int nt = cur.first+1;
nx = x + 1;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({nt,nx});
vis[nx] = 1;
}
nx = x - 1;
if(nx >= 0 && nx < MAX && vis[nx]!=1) {
q.push({nt,nx});
vis[nx] = 1;
}
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> k;
cout << bfs();
return 0;
}