[ACM]POJ1163 The Triangle

DP 数字三角形

Description

........7
......3 8
....8 1 0
..2 7 4 4
4 5 2 6 5

(Figure 1)

Figure 1 shows a number triangle. Write a program that calculates the highest sum of numbers passed on a route that starts at the top and ends somewhere on the base. Each step can go either diagonally down to the left or diagonally down to the right.

Input

Your program is to read from standard input. The first line contains one integer N: the number of rows in the triangle. The following N lines describe the data of the triangle. The number of rows in the triangle is > 1 but <= 100. The numbers in the triangle, all integers, are between 0 and 99.

Output

Your program is to write to standard output. The highest sum is written as an integer.

Sample Input

5
7
3 8
8 1 0
2 7 4 4
4 5 2 6 5

Sample Output

30

这道题咋一看挺简单,最容易想到的是采用递归,遍历若有的路径,对所有的路径求和,然后求出最大值,代码如

下:


然而,递归终究不是最理想的解法,无论从时间复杂度还是从空间复杂度都不是最理想的选择,我们可以换一种思

维,“自底向上”逐个比较最大值,从倒数第二层开始,用下一层子节点的最大值与本节点相加,“逆流而上”,见

代码:


呵呵,代码量是不是少了很多,而且时间复杂度和空间复杂度都降低了!(第二种解法来源于网上,感谢原作者)


你可能感兴趣的:(ACM)