美文网首页Project Euler
Project Euler 14 Longest Collatz

Project Euler 14 Longest Collatz

作者: TauJiong | 来源:发表于2019-09-28 20:43 被阅读0次

    Question

    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.

    Analysis

    1. 为了简化计算,应该将已经计算过的值所需的步数保存在一个字典里面,这样越到后面计算起来越方便。
    2. 初始值可以设在500000,因为对于任意小于500000的数n,必然有2n < 1000000的长度大于n
    3. 递归的使用
    4. 官方思路

    Program

    box = {1: 1}
    result = 0
    max = 0
    
    
    def Collatz(num):
        if num in box.keys():
            return box[num]
        elif num % 2 == 0:
            step = Collatz(num / 2) + 1
        else:
            step = Collatz((3 * num + 1) / 2) + 2
        box[num] = step
        return step
    
    
    for i in range(500000, 899999):
        step = Collatz(i)
        if step > max:
            result = i
            max = step
    
    print(result)
    

    相关文章

      网友评论

        本文标题:Project Euler 14 Longest Collatz

        本文链接:https://www.haomeiwen.com/subject/zbxzuctx.html