码迷,mamicode.com
首页 > 其他好文 > 详细

Catch That Cow(poj 3278)

时间:2016-06-29 19:02:33      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

给定两个整数n和k

通过 n+1或n-1 或n*2 这3种操作,使得n==k

输出最少的操作次数

技术分享
//广搜,a是队列,step记录步数,vis记录哪些数被搜到过 
#include<cstdio>
#include<iostream>
#define M 1000010
using namespace std;
int step[M],a[M],vis[M];
int main()
{
    int n,m,head=0,tail=1;
    scanf("%d%d",&n,&m);
    a[1]=n;
    vis[n]=1;
    while(head<tail)
    {
        ++head;
        int u=a[head];
        if(u==m)
        {
            printf("%d",step[head]);
            return 0;
        }
        if(u-1>=0&&!vis[u-1])
        {
            a[++tail]=u-1;
            step[tail]=step[head]+1;
            vis[u-1]=1;
        }
        if(u+1<1000000&&!vis[u+1])
        {
            a[++tail]=u+1;
            step[tail]=step[head]+1;
            vis[u+1]=1;
        }
        if(u*2<1000000&&!vis[u*2])
        {
            a[++tail]=u*2;
            step[tail]=step[head]+1;
            vis[u*2]=1;
        }
    }
    return 0;
} 
View Code

 

Catch That Cow(poj 3278)

标签:

原文地址:http://www.cnblogs.com/harden/p/5627773.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!