首页 > 技术文章 > codeforces 520 Two Buttons

jeff-wgc 2015-04-26 21:21 原文

http://codeforces.com/problemset/problem/520/B

B. Two Buttons
time limit per test
2 seconds
memory limit per test
256 megabytes
input:standard input
output:standard output

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

 

分析:

 

直接模拟,从后面往前面推。

 

AC代码:

 

 

 1 #include <stdio.h>
 2 #include <algorithm>
 3 #include <iostream>
 4 #include <string.h>
 5 #include <string>
 6 #include <math.h>
 7 #include <stdlib.h>
 8 #include <queue>
 9 #include <stack>
10 #include <set>
11 #include <map>
12 #include <list>
13 #include <iomanip>
14 #include <vector>
15 #pragma comment(linker, "/STACK:1024000000,1024000000")
16 #pragma warning(disable:4786)
17 
18 using namespace std;
19 
20 const int INF = 0x3f3f3f3f;
21 const int MAX = 20000 + 10;
22 const double eps = 1e-8;
23 const double PI = acos(-1.0);
24 
25 int main()
26 {
27     int n , m;
28     while(~scanf("%d %d",&n , &m))
29     {
30         int ans = 0 ;
31         while(n < m)
32         {
33             if(m % 2)
34             {
35                 m ++;
36                 ans ++;
37             }
38             else
39             {
40                 m /= 2;
41                 ans ++;
42             }
43         }
44         cout << ans + n - m << endl;
45     }
46     return 0;
47 }
View Code

 

推荐阅读