您的位置:首页 > 其它

Problem 67 Maximum path sum II (dp)

2016-10-27 14:06 302 查看


Maximum path sum II


Problem 67

By starting at the top of the triangle below and moving to adjacent numbers on the row below, the maximum total from top to bottom is 23.

3
7 4

4 6

8 5 9 3
That is, 3 + 7 + 4 + 9 = 23.

Find the maximum total from top to bottom in triangle.txt (right click and 'Save
Link/Target As...'), a 15K text file containing a triangle with one-hundred rows.

NOTE: This is a much more difficult version of Problem 18. It is not possible
to try every route to solve this problem, as there are 299 altogether! If you could check one trillion (1012) routes every second it would take over twenty billion years to check them all. There is an efficient algorithm to solve it.
;o)

Answer:
7273
Completed on Thu, 27 Oct 2016, 06:03
题解:和problem 18 一样....Dynamic programming...

代码:

#include <bits/stdc++.h>
using namespace std;
int dp[110][1100];
int main()
{
int maxn=0;
memset(dp,0,sizeof(dp));
freopen("in.txt","r",stdin);
for(int i=1;i<=100;i++)
{
for(int j=1;j<=i;j++)
{
scanf("%d",&dp[i][j]);
dp[i][j]+=max(dp[i-1][j-1],dp[i-1][j]);
maxn=max(maxn,dp[i][j]);
}
}
cout<<maxn<<endl;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: