AcWing 1100.抓住那头牛

算法思路

这道题更为简单粗暴,相比188和1076的二维搜索问题,本题将搜索放到了一维层面,实际上更加简单了,具体思路同dijkstra模板

算法实现

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
#include <iostream>
#include <queue>
#include <cstring>

using namespace std;

const int N = 100010;

int n, k;
int dist[N], st[N];

int main()
{
cin >> n >> k;

queue<int> q;
q.push(n);

memset(dist, 0x3f, sizeof dist);
dist[n] = 0;

while(!q.empty())
{
auto t = q.front();
q.pop();
if (st[t]) continue;
st[t] = true;
if (t - 1 >= 0)
{
dist[t - 1] = min(dist[t - 1], dist[t] + 1);
q.push(t - 1);
}

if (t + 1 < N)
{
dist[t + 1] = min(dist[t + 1], dist[t] + 1);
q.push(t + 1);
}

if (t * 2 < N)
{
dist[t * 2] = min(dist[t * 2], dist[t] + 1);
q.push(t * 2);
}
}

cout << dist[k];
}

AcWing 1100.抓住那头牛
http://anyin233.github.io/2022/01/24/AcWing-1100-抓住那头牛/
Author
anyin233
Posted on
January 24, 2022
Licensed under