The Collatz Sequence |
An algorithm given by Lothar Collatz produces sequences of integers, and is described as follows:
It has been shown that this algorithm will always stop (in step 2) for initial values of A as large as 109, but some values of A encountered in the sequence may exceed the size of an integer on many computers. In this problem we want to determine the length of the sequence that includes all values produced until either the algorithm stops (in step 2), or a value larger than some specified limit would be produced (in step 4).
3 100 34 100 75 250 27 2147483647 101 304 101 303 -1 -1
Case 1: A = 3, limit = 100, number of terms = 8 Case 2: A = 34, limit = 100, number of terms = 14 Case 3: A = 75, limit = 250, number of terms = 3 Case 4: A = 27, limit = 2147483647, number of terms = 112 Case 5: A = 101, limit = 304, number of terms = 26 Case 6: A = 101, limit = 303, number of terms = 1
题目大意:
输入两个数A和L,按照以下进行循环运算,问最后结束循环时一共进行了多少次运算?注意:
- 若A为1或者A>L,则推出。
- 若A为偶数,则A=A/2。
- 若A为奇数,则A=3*A+1。
- 最后的1也算一项。
- 如果某个A>limit,那么此项不计入。
- 3*A+1很可能会溢出,所以要用long long进行保存。
#include <stdio.h> int main() { long long a,l,t; int cnt,cas = 1; while(scanf("%lld%lld",&a,&l) != EOF) { if(a == -1 && l == -1) { break; } cnt = 0; t = a; while( a != 1 && a <= l) { if(a % 2 == 0) { a = a / 2; }else if(a % 2 == 1) { a = 3 * a + 1; } cnt++; } if(a == 1) { cnt++; } printf("Case %d: A = %lld, limit = %lld, number of terms = %d\n",cas++,t,l,cnt); } return 0; }