The following iterative sequence is defined for the set of positive integers:
n → n/2 (n is even)
n → 3n + 1 (n is odd)
Using the rule above and starting with 13, we generate the following sequence:
13 → 40 → 20 → 10 → 5 → 16 → 8 → 4 → 2 → 1
It can be seen that this sequence (starting at 13 and finishing at 1) contains 10 terms. Although it has not been proved yet (Collatz Problem), it is thought that all starting numbers finish at 1.
Which starting number, under one million, produces the longest chain?
NOTE: Once the chain starts the terms are allowed to go above one million.
--------------------
- #include <stdio.h>
-
-
-
inline long long unsigned next(long long unsigned num)
-
{
-
if (num%2)
-
return 3*num + 1;
-
else
-
return num >> 1;
-
}
-
-
-
int main(int argc, const char *argv[])
-
{
-
long long unsigned result = 0;
-
long long unsigned count;
-
long long unsigned num;
-
int i, mi;
-
-
for (i=2; i<1000000; i++) {
-
num = i;
-
count = 0;
-
while (num != 1) {
-
num = next(num);
-
count++;
-
}
-
if (count > result) {
-
result = count;
-
mi = i;
-
}
-
}
-
-
-
printf("mi %d, result=%lu\n", mi, result);
-
-
return 0;
-
}
-
-
穷举法。考虑某种情况下,超过LLONG_MAX怎么办? 利用系统缓冲或许可以进行一定的优化。
阅读(1409) | 评论(0) | 转发(0) |