解题思路:
注意事项:
参考代码:
#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[maxn][maxn]; int main() { scanf("%d", &n); for(int i = 1; i <= n; ++i) { for(int j = 1; j <= i; ++j) { scanf("%d", &a[i][j]); } } for(int i = 1; i <= n; ++i) { d[n][i] = a[n][i]; } for(int i = n-1; i >= 1; --i) { for(int j = 1; j <= i; ++j) { d[i][j] = a[i][j] + max(d[i+1][j],d[i+1][j+1]); } } printf("%d\n", d[1][1]); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
不容易系列2 (C语言代码)浏览:641 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:1215 |
WU-判定字符位置 (C++代码)浏览:1471 |
WU-C语言程序设计教程(第三版)课后习题11.11 (C++代码)(想学链表的可以看看)浏览:1464 |
三角形 (C++代码)递推浏览:825 |
打印十字图 (C语言代码)浏览:2822 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:569 |
C语言程序设计教程(第三版)课后习题11.3 (C语言代码)浏览:644 |
简单的a+b (C语言代码)浏览:491 |