Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately.

FarmerJohnhasbeeninformedofthelocationofafugitivecowandwantstocatchherimmediately.Hes... Farmer John has been informed of the location of a fugitive cow and wants to catch her immediately. He starts at a point N (0 ≤ N ≤ 100,000) on a number line and the cow is at a point K (0 ≤ K ≤ 100,000) on the same number line. Farmer John has two modes of transportation: walking and teleporting.

* Walking: FJ can move from any point X to the points X - 1 or X + 1 in a single minute
* Teleporting: FJ can move from any point X to the point 2 × X in a single minute.
展开
 我来答
希望村村民
2012-12-04 · TA获得超过1589个赞
知道小有建树答主
回答量:1187
采纳率:100%
帮助的人:1034万
展开全部
#include<cstdio>
#define N 100005

int u,v,x,f[N],q[N*2],h,t;
int main()
{
scanf("%d%d",&u,&v);
q[t++]=u;
while(h<t)
{
u=q[h++];
if(u==v)
{
printf("%d\n",f[u]);
break;
}
x=f[u]+1;
if(u>0&&!f[u-1])
f[q[t++]=u-1]=x;
if(u<=N&&!f[u+1])
f[q[t++]=u+1]=x;
if(u*2<=N&&!f[u*2])
f[q[t++]=u*2]=x;
}
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
LeoYim
2016-07-22 · TA获得超过117个赞
知道答主
回答量:64
采纳率:50%
帮助的人:10.6万
展开全部
//来源:csdn·blog
#include<iostream>
#include<queue>
#include<string.h>

using namespace std;
#define M 100001
#define INF 10000000

struct POINT
{
int pos;
int step;
}now,next;
queue<POINT>Q;
bool visited[M];

int n,k;
int bfs()
{
while(!Q.empty())
Q.pop();
now.pos=n;
now.step=0;
visited[now.pos]=true;
Q.push(now);
while(!Q.empty())
{
now=Q.front();
Q.pop();
next=now;
for(int i=0;i<3;i++)
{
if(i==0)
next.pos=now.pos+1;
if(i==1)
next.pos=now.pos-1;
if(i==2)
next.pos=now.pos*2;
next.step=now.step+1;
if(next.pos==k)
return next.step;
if(next.pos<0||next.pos>M)
continue;
if(!visited[next.pos])
{
visited[next.pos]=true;
Q.push(next);
}
}
}
return INF;
}

int main()
{
while(cin>>n>>k)
{
memset(visited,false,sizeof(visited));
if(n<k)
cout<<bfs()<<endl;
if(n==k)
cout<<0<<endl;
if(n>k)
cout<<n-k<<endl;
}
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式