1209:Catch That Cow(bfs)

本文介绍了一种基于广度优先搜索(BFS)的最短路径算法实现,该算法用于解决从一个起点到终点的最短时间问题。通过三种移动方式(前进一步、后退一步、跳跃两步),算法寻找出从初始位置到达目标位置所需的最少步骤。
摘要由CSDN通过智能技术生成

题意:

从一个坐标到另一个坐标的移动方式有三种,即:st-1,st+1,2*st。每移动一步时间是一秒。

给出两个坐标,求得从第一坐标到第二座标的最短时间。

#include<iostream>
#include<cstdio>
#include<queue>
#include<cstring>
using namespace std;
const int maxn=100005;
int step[maxn];
int st,ed;
void bfs(){
    int key,t;
    queue<int>que;
    que.push(st);
    while(!que.empty()){
        key=que.front();
        que.pop();
        if(key==ed)
            break;
        t=key+1;
        if(t<maxn&&step[t]==0){
            step[t]=step[key]+1;
            que.push(t);
        }
        t=key-1;
        if(0<=t&&t<maxn&&step[t]==0){
            step[t]=step[key]+1;
            que.push(t);
        }
        t=key*2;
        if(t<maxn&&step[t]==0){
            step[t]=step[key]+1;
            que.push(t);
        }
    }
}
int main ()
{
    scanf("%d%d",&st,&ed);
    memset(step,0,sizeof(step));
    bfs();
    printf("%d\n",step[ed]);
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值