forked from TheAlgorithms/Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsol3.py
executable file
·97 lines (83 loc) · 2.93 KB
/
sol3.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#!/usr/bin/env python
from typing import Tuple
"""
Collatz conjecture: start with any positive integer n. Next term obtained from
the previous term as follows:
If the previous term is even, the next term is one half the previous term.
If the previous term is odd, the next term is 3 times the previous term plus 1.
The conjecture states the sequence will always reach 1 regardless of starting
n.
Problem Statement:
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?
"""
# we are going to avoid repeat computations by creating a knowledge base
# where we store the length of all collatz chains we calculated so far
knowledge = {1: 1}
# a single step in a collatz chain
def collatz(n: int) -> int:
""" Calculates a single step in a collatz chain.
>>> collatz(13)
40
>>> collatz(40)
20
>>> collatz(5)
16
"""
if n % 2 == 0:
return n // 2
else:
return 3 * n + 1
def calculate_chain(n: int) -> None:
"""
Calculates a collatz chain of a certain number. This calculation is halted
whenever we find a key with a known collatz chain in our knowledge base.
This function has no return value and doctests can't measure side effects,
so we can't do doctests on this function.
"""
entries = []
while n not in knowledge:
entries.append(n)
n = collatz(n)
chain_size = knowledge[n]
for i in entries[::-1]:
chain_size += 1
knowledge[i] = chain_size
def solution(m: int) -> Tuple[int, int]:
""" Returns the number under n that generates the longest Collatz sequence.
>>> solution(1000000)
(837799, 525)
>>> solution(200)
(171, 125)
>>> solution(5000)
(3711, 238)
>>> solution(15000)
(13255, 276)
"""
max_chain = (1, 1)
for i in range(1, m + 1):
calculate_chain(i)
# we can use knowledge[i] because calculate_chain
# by definition already adds the key we specified to the
# knowledge base
if max_chain[1] < knowledge[i]:
max_chain = (i, knowledge[i])
return max_chain
if __name__ == "__main__":
print("""
calculate the number with the longest collatz chain
in the range between 1 and the following number:
""")
input_number = int(input().strip())
number, chain_length = solution(input_number)
print(f"""
the maximum collatz chain of all numbers between 1 and {input_number} is
{chain_length}, starting with the number {number}
""")