解题思路:
注意事项:
参考代码:
#include <cstdio> #include <cstring> #include <string> #include <cmath> #include <functional> #include <iostream> #include <algorithm> using namespace std; const int maxn = 101; const int INF = -2100000000; int a[maxn][maxn], n, *d; int main() { scanf("%d", &n); for(int i = 1; i <= n; ++i) { for(int j = 1; j <= i; ++j) { scanf("%d", &a[i][j]); } } d = a[n]; for(int i = n-1; i >= 1; --i) { for( int j = 1; j <= i; ++j) { d[j] = a[i][j] + max(d[j],d[j+1]); } } printf("%d\n", d[1]); return 0; }
0.0分
7 人评分
C语言程序设计教程(第三版)课后习题6.7 (C语言代码)浏览:548 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:504 |
printf基础练习2 (C语言代码)浏览:690 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
DNA (C语言代码)浏览:798 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:1496 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:416 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:497 |
简单的a+b (C语言代码)浏览:491 |
杨辉三角 (C语言代码)浏览:734 |