我是靠谱客的博主 醉熏黑裤,最近开发中收集的这篇文章主要介绍kuangbin专题一 catch the cow (BFS),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

BFS例题

注意:1. 超过100000时跳出 2. 如果到右边再回来,一定没有直接从左边过去划算

代码:

// zyc 2018/8/20
#include <cstdio>
#include <cstring>
#include <queue>
#include <algorithm>
using namespace std;
typedef long long ll;
const int maxn = 100000 + 7;
const int inf = 0x3f3f3f3f;
int m, k;
int dis [maxn];
bool cheak (int l)
{
if (l >= 0 && l <= 100000 && dis[l] == inf) return true;
else return false;
}
void bfs ()
{
memset (dis, inf, sizeof (dis));
int s1, s2;
queue <int> res;
dis[m] = 0;
res.push(m);
while (!res.empty()) {
s1 = res.front ();
if (s1 == k) {printf ("%dn", dis[s1]); return ;}
res.pop();
s2 = s1;
if (cheak (s2 + 1)) { dis[s2 + 1] = dis[s2] + 1; res.push(s2 + 1);}
s2 = s1;
if (cheak (s2 * 2)) { dis[s2 * 2] = dis[s2] + 1; res.push(s2 * 2);}
s2 = s1;
if (cheak (s2 - 1)) { dis[s2 - 1] = dis[s2] + 1; res.push(s2 - 1);}
}
}
int main ()
{
while (~scanf ("%d %d", &m, &k)) {
bfs ();
}
return 0;
}

 

最后

以上就是醉熏黑裤为你收集整理的kuangbin专题一 catch the cow (BFS)的全部内容,希望文章能够帮你解决kuangbin专题一 catch the cow (BFS)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(67)

评论列表共有 0 条评论

立即
投稿
返回
顶部