Codeforces Round #295 (Div. 2)--b--two Buttons

Source: Internet
Author: User



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. After clicking the blue button, device subtracts one is 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 have to do in order to achieve this result?


Input


The first and the only line of the input contains, 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
Input
10 1
Output
9
Note


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 was unnecessary, so we need to push the blue button nine times.



The main idea: n can only be enlarged by one or less one conversion to m reduction of one or more, a simplified version of the cow can be done with DFS


#include<cstdio> #include<cstring> #include<algorithm> using namespace std; int main()
{ int n,m; while(~scanf("%d%d",&n,&m)){ int step = 0; while(n <m){ if(m%2 == 0){
            m/= 2;
            step++;
            } else {
                m++;
                step++;
           }
        }
        printf("%d\n",n - m + step);
    } return 0;
}
View Code





Codeforces Round #295 (Div. 2)--b--two Buttons


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.