Codevs 数字三角形 问题合集
1220 数字三角形
时间限制: 1 s 空间限制: 128000 KB 题目等级 : 黄金 Gold
题目描述 Description
如图所示的数字三角形,从顶部出发,在每一结点可以选择向左走或得向右走,一直走到底层,要求找出一条路径,使路径上的值最大。
输入描述 Input Description
第一行是数塔层数N(1<=N<=100)。
第二行起,按数塔图形,有一个或多个的整数,表示该层节点的值,共有N行。
输出描述 Output Description
输出最大值。
样例输入 Sample Input
5
13
11 8
12 7 26
6 14 15 8
12 7 13 24 11
样例输出 Sample Output
86
数据范围及提示 Data Size & Hint
数字三角形
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 using namespace std; 5 int w[157][157],n; 6 int main() 7 { 8 scanf("%d",&n); 9 for(int i=1;i<=n;i++) 10 for(int j=1;j<=i;j++) 11 scanf("%d",&w[i][j]); 12 for(int i=n-1;i>=1;i--) 13 for(int j=1;j<=i;j++) 14 w[i][j]+=max(w[i+1][j],w[i+1][j+1]); 15 printf("%d",w[1][1]); 16 return 0; 17 }
2189 数字三角形W
时间限制: 1 s 空间限制: 32000 KB 题目等级 : 黄金 Gold
题目描述 Description