• POJ3278 Catch That Cow(BFS)


    给定两个整数n和k,通过 n+1或n-1 或n*2 这3种操作,使得n==k

    输出最少的操作次数

    #include<iostream>
    #include<queue>
    #include<cstring>
    #include<cstdio>
    using namespace std;
    
    const int maxn=100001;
    
    bool visit[maxn];
    int step[maxn];
    queue <int> q;
    
    int bfs(int n,int k)
    {
        int head,next;
        q.push(n);
        step[n]=0;
        visit[n]=true;
        while(!q.empty())
        {
            head=q.front();
            q.pop();
            for(int i=0;i<3;i++)
            {
                if(i==0) next=head-1;
                else if(i==1) next=head+1;
                else next=head*2;
    
                if(next<0||next>=maxn) continue;
                if(!visit[next])
                {
                    q.push(next);
                    step[next]=step[head]+1;
                    visit[next]=true;
                }
                if(next==k) return step[next];
            }
    
        }
    }
    int main()
    {
        int n,k;
        cin>>n>>k;
        cout<<bfs(n,k)<<endl;
        return 0;
    }
  • 相关阅读:
    python函数
    文件操作
    python列表,元组,字典,集合简介
    python字符串(str)
    python数字类型 or 进制转换
    流程控制
    Python入门
    Python垃圾回收机制
    python简介&下载&安装
    DAY11
  • 原文地址:https://www.cnblogs.com/Fy1999/p/9174153.html
Copyright © 2020-2023  润新知