
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. 展开
* 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. 展开
展开全部
#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;
}
}
#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;
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//来源: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;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询