| Time Limit: 1000MS | Memory Limit: 10000K | |
| Total Submissions: 37778 | Accepted: 22685 |
Description
7 3 8 8 1 0 2 7 4 4 4 5 2 6 5 (Figure 1)
Input
Output
Sample Input
5 7 3 8 8 1 0 2 7 4 4 4 5 2 6 5
Sample Output
30
Source
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=101;
int dp[maxn][maxn],a[maxn][maxn];
int main()
{
int n,i,j;
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=i;j++)
scanf("%d",&a[i][j]);
for(i=1;i<=n;i++)
dp[n][i]=a[n][i];
for(i=n-1;i>=0;i--)
for(j=1;j<=i;j++)
dp[i][j]=max(dp[i+1][j],dp[i+1][j+1])+a[i][j];//往上递推
printf("%d\n",dp[1][1]);
return 0;
}
还有一种节约内存的写法;#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=101;
int a[maxn][maxn];
int *dp;
int main()
{
int n,i,j;
scanf("%d",&n);
for(i=1;i<=n;i++)
for(j=1;j<=i;j++)
scanf("%d",&a[i][j]);
dp=a[n];
for(i=n-1;i>=0;i--)
for(j=1;j<=i;j++)
dp[j]=max(dp[j],dp[j+1])+a[i][j];
printf("%d\n",dp[1]);
return 0;
}
原文地址:http://blog.csdn.net/whjkm/article/details/39032861