-
Notifications
You must be signed in to change notification settings - Fork 0
/
3278.cpp
101 lines (78 loc) · 1.45 KB
/
3278.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#include<iostream>
#include<queue>
#include<memory.h>
#define WHITE 0
#define GRAY 1
#define BLACK 2
using namespace std;
int color[200000];
int dis[200000];
queue<int> q1;
int t;
int bfs(int n ,int k)
{
if(n>=k)
return n-k;
color[n]=GRAY;
q1.push(n);
while(!q1.empty())
{
int s=q1.front();
q1.pop();
//s-1
t=s-1;
if(t>=0 && color[t]==WHITE)
{
color[t]=GRAY;
dis[t]=dis[s]+1;
if(t==k)
{
return dis[t];
}
else
{
q1.push(t);
}
}
//s+1
t=s+1;
if(t<=100000 && color[t]==WHITE)
{
color[t]=GRAY;
dis[t]=dis[s]+1;
if(t==k)
{
return dis[t];
}
else
{
q1.push(t);
}
}
//s*2
t=s*2;
if(t<=100000 && color[t]==WHITE)
{
color[t]=GRAY;
dis[t]=dis[s]+1;
if(t==k)
{
return dis[t];
}
else
{
q1.push(t);
}
}
color[s]=BLACK;
}
}
int main()
{
int n,k; //n--farmer john ;k---cow
cin >> n >> k;
memset(color,WHITE,sizeof(color));
memset(dis,0,sizeof(dis));
cout << bfs(n,k) << endl;
return 0;
}