解题思路:
注意事项:
参考代码:
#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 dp(int i, int j) { if(d[i][j] >= 0) { return d[i][j]; } else { return d[i][j] = a[i][j] + (i == n ? 0 : max(dp(i+1,j),dp(i+1,j+1))); } } int main() { memset(d,-1,sizeof(d)); scanf("%d", &n); for(int i = 1; i <= n; ++i) { for(int j = 1; j <= i; ++j) { scanf("%d", &a[i][j]); } } printf("%d\n", dp(1,1)); return 0; }
0.0分
2 人评分
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:1292 |
1908题解浏览:680 |
数字游戏 (C++代码)浏览:1240 |
核桃的数量 (C语言代码)浏览:893 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |
C语言程序设计教程(第三版)课后习题11.8 (C语言代码)浏览:756 |
C语言程序设计教程(第三版)课后习题6.8 (C语言代码)浏览:653 |
简单的a+b (C语言代码)浏览:444 |
C语言程序设计教程(第三版)课后习题3.7 (C语言代码)浏览:611 |
1063题 初学者,求帮忙看下,不知道哪错了浏览:239 |