codeforces 520B Two Buttons[記憶化搜索]


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.

Sample test(s)
Input
4 6
Output
2

代碼:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<string>
#include<queue>
#include<stack>
#include<map>
#define INF 0x3f3f3f3f
#define mem(a,b) memset(a,b,sizeof(a))
using namespace std;

typedef long long LL;
const int N=100007;

struct node{
    int cnt;
    int cur;
    node(int a,int b):cnt(a),cur(b){}
};

int vis[N];


void bfs(int n,int m)
{
    mem(vis,0);
    queue<node> que;
    que.push(node(0,n));
    vis[n]=1;
    while(!que.empty())
    {
        node cc=que.front();
        que.pop();
        if(cc.cur==m)
        {
            printf("%d\n",cc.cnt);
            break;
        }
        if(cc.cur-1>0&&!vis[cc.cur-1])
        {
            que.push(node(cc.cnt+1,cc.cur-1));
            vis[cc.cur-1]=1;
        }
        if(cc.cur*2<2*m&&!vis[cc.cur*2])
        {
            que.push(node(cc.cnt+1,cc.cur*2));
            vis[cc.cur*2]=1;
        }

    }
}

int main()
{
    int n,m;
    while(cin>>n>>m)
    {
        bfs(n,m);
    }
    return 0;
}


發佈了149 篇原創文章 · 獲贊 16 · 訪問量 12萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章