爱码岛编程OJ
Home
ProblemSet
Source/Category
Contest
课程
刷题视频
Login
1258: 【基础】数塔问题
Memory Limit:16 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:3
Submit
Submit Record
Statistics
ShowOff!
Description
有如下所示的数塔,要求从底层走到顶层,若每一步只能走到相邻的结点,则经过的结点的数字之和最大是多少?
Input
输入数据首先包括一个整数整数N(1 <= N <= 100),表示数塔的高度,接下来用N行数字表示数塔,其中第i行有个i个整数,且所有的整数均在区间[0,99]内。
Output
从底层走到顶层
经过的数字的最大和是多少?
Sample Input
Copy
5 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
Sample Output
Copy
30
Source/Category
递推
动态规划
Submit
Submit Record
Statistics
ShowOff!