-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp67.py
executable file
·25 lines (21 loc) · 953 Bytes
/
p67.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
"""
By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23.
3
7 4
2 4 6
8 5 9 3
That is, 3 + 7 + 4 + 9 = 23.
Find the maximum total from top to bottom in triangle.txt (right click and 'Save Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.
NOTE: This is a much more difficult version of Problem 18.
It is not possible to try every route to solve this problem, as there are 299 altogether!
If you could check one trillion (1012) routes every second it would take over twenty billion years to check them all.
There is an efficient algorithm to solve it. ;o)
"""
#biggest_sum = __import__("18").biggest_sum
from p18 import biggest_sum
def biggest_sum_from_file(filename):
with open(filename, "r") as f:
return biggest_sum(f.read())
if __name__ == "__main__":
filename = "67.txt"
print(biggest_sum_from_file(filename))