您的位置:首页 > 产品设计 > UI/UE

Problem 14:Longest Collatz sequence

2014-05-03 21:38 429 查看
题目描述:

The following iterative sequence is defined for the set of positive integers:


 n/2
(n is even)


 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.

代码:

def chain(num):
count=1
while num!=1:
if num%2==0:
num=num/2
count+=1
else:
num=num*3+1
count+=1
return count

maxChain=1
num=0
for i in range(1,1000001):
temp=chain(i)
if temp>maxChain:
num=i
maxChain=temp
print num
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: