codeforces 520B Two Buttons[记忆化搜索]

来源:互联网 发布:淘宝店铺如何激活 编辑:程序博客网 时间:2024/05/28 06:04
传送门:http://codeforces.com/contest/520/problem/B

B. 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 numbern.

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 numberm 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;}


0 0
原创粉丝点击