126. Boxes time limit per test: 0.5 sec. There are two boxes. There are A balls in the first box, and B balls in the second box (0 < A + B < 2147483648). It is possible to move balls from one box to another. From one box into another one should move as many balls as the other box already contains. You have to determine, whether it is possible to move all balls into one box. Input The first line contains two integers A and B, delimited by space. Output First line should contain the number N - the number of moves which are required to move all balls into one box, or -1 if it is impossible. Sample Input Sample Output 2 6 Sample Output 2 |
按照题意模拟、若是循环的次数很大、则是属于不符合要求的了。
|
SGU126-Boxes
最新推荐文章于 2018-10-10 10:15:00 发布