N - 14 C++

题目:

Vasya has found a strange device. On the front panel of a device there are: a red button, a blue button and a display showing some positive integer. After clicking the red button, device multiplies the displayed number by two. After clicking the blue button, device subtracts one from the number on the display. If at some point the number stops being positive, the device breaks down. The display can show arbitrarily large numbers. Initially, the display shows number n.

Bob wants to get number m on the display. What minimum number of clicks he has to make in order to achieve this result?

Input

The first and the only line of the input contains two distinct integers n and m (1 ≤ n, m ≤ 104), separated by a space .

Output

Print a single number — the minimum number of times one needs to push the button required to get the number m out of number n.

Examples
Input
4 6
Output
2
Input
10 1
Output
9
Note

In the first example you need to push the blue button once, and then push the red button once.

In the second example, doubling the number is unnecessary, so we need to push the blue button nine times.

思路:BFS。

代码:

#include<iostream>
#include<queue>
using namespace std;
const int INF=100000000;
long long int fun(int i,long long int ss)
{
    long long int s;
    if(i==0)s=ss-1;
    if(i==1)s=ss*2;
    return s;
}
void bfs(long long int a,long long int b)
{
    queue<long long int>q;
    q.push(a);
    int i;
    long long int d[100005];
    for(i=0;i<100005;i++){d[i]=INF;}
    d[a]=0;
    while(q.size())
    {
        long long int s=q.front();q.pop();
        if(s==b){cout<<d[b]<<endl;return;}
        long long int ss=s;
        for(i=0;i<2;i++)
        {
            s=fun(i,ss);
            if(s>=0&&s<=100000&&d[s]==INF)
                {
                    q.push(s);
                    d[s]=d[ss]+1;
                }
        }
    }
}
int main()
{
    long long int n,k;
    while(cin>>n>>k)
    {
        bfs(n,k);
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/zero_979/article/details/79858335