码迷,mamicode.com
首页 > 编程语言 > 详细

欧拉计划(python) problem 67

时间:2015-01-31 13:06:41      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

Maximum path sum II

Problem 67

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
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)


Answer:
7273
Completed on Fri, 30 Jan 2015, 14:21

Go to the thread for problem 67 in the forum.

解题思路:动态规划

python code :

import math
sqrt=math.sqrt


a=[]
f = open("data.txt")
line = f.readline()
while line:
    row=line.split(‘ ‘)
    for i in range(0,len(row)):
        a.append(int(row[i]))
    line = f.readline()
f.close()


k=len(a)
def getsun(x):
    redult=[];
    k=int((sqrt(1+8*x)-1)/2)+1
    return [x+k,x+k+1]


def getrowstart(x):
    return int(x*(x-1)/2)


for i in range(99,0,-1):
    start=getrowstart(i)
    for j in range(0,i):
        sun=getsun(start+j)
        a[start+j]+=max(a[sun[0]],a[sun[1]])
print(a[0])


time: <1s

欧拉计划(python) problem 67

标签:

原文地址:http://blog.csdn.net/zhangzhengyi03539/article/details/43317593

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!