POJ_3176_Cow_Bowling_(数字三角形)_(动态规划)

描述


http://poj.org/problem?id=3176

给出一个三角形,每个点可以走到它下面两个点,将所有经过的点的值加起来,问最大的和是多少.

 

Cow Bowling
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 16826 Accepted: 11220

Description

The cows don't use actual bowling balls when they go bowling. They each take a number (in the range 0..99), though, and line up in a standard bowling-pin-like triangle like this:

          7


3 8

8 1 0

2 7 4 4

4 5 2 6 5
Then the other cows traverse the triangle starting from its tip and moving "down" to one of the two diagonally adjacent cows until the "bottom" row is reached. The cow's score is the sum of the numbers of the cows visited along the way. The cow with the highest score wins that frame.

Given a triangle with N (1 <= N <= 350) rows, determine the highest possible sum achievable.

Input

Line 1: A single integer, N

Lines 2..N+1: Line i+1 contains i space-separated integers that represent row i of the triangle.

Output

Line 1: The largest sum achievable using the traversal rules

Sample Input

5
7
3 8
8 1 0
2 7 4 4
4 5 2 6 5

Sample Output

30

Hint

Explanation of the sample:

          7

*
3 8
*
8 1 0
*
2 7 4 4
*
4 5 2 6 5
The highest score is achievable by traversing the cows as shown above.

Source

分析


记忆化搜索:

 1 #include<cstdio>
 2 #include<cstring>
 3 #include<algorithm>
 4 using std :: max;
 5 
 6 const int maxn=355;
 7 int a[maxn][maxn],f[maxn][maxn];
 8 int n;
 9 
10 int dfs(int i,int j)
11 {
12     if(f[i][j]!=-1) return f[i][j];
13     if(i==n) return f[i][j]=a[i][j];
14     return f[i][j]=a[i][j]+max(dfs(i+1,j),dfs(i+1,j+1));
15 }
16 
17 void init()
18 {
19     scanf("%d",&n);
20     for(int i=1;i<=n;i++)
21     {
22         for(int j=1;j<=i;j++)
23         {
24             scanf("%d",&a[i][j]);
25         }
26     }
27     memset(f,-1,sizeof(f));
28 }
29 
30 int main()
31 {
32 #ifndef ONLINE_JUDGE
33     freopen("cow.in","r",stdin);
34     freopen("cow.out","w",stdout);
35 #endif
36     init();
37     printf("%d\n",dfs(1,1));
38 #ifndef ONLINE_JUDGE
39     fclose(stdin);
40     fclose(stdout);
41 #endif
42     return 0;
43 }
View Code

动态规划:

 1 #include<cstdio>
 2 #include<algorithm>
 3 using std :: max;
 4 
 5 const int maxn=355;
 6 int n;
 7 int a[maxn][maxn],f[maxn][maxn];
 8 
 9 void solve()
10 {
11     for(int i=n-1;i>=1;i--)
12     {
13         for(int j=1;j<=i;j++)
14         {
15             f[i][j]=max(f[i+1][j],f[i+1][j+1])+a[i][j];
16         }
17     }
18     printf("%d\n",f[1][1]);
19 }
20 
21 void init()
22 {
23     scanf("%d",&n);
24     for(int i=1;i<=n;i++)
25     {
26         for(int j=1;j<=i;j++)
27         {
28             scanf("%d",&a[i][j]);
29         }
30     }
31     for(int j=1;j<=n;j++) f[n][j]=a[n][j];
32 }
33 
34 int main()
35 {
36 #ifndef ONLINE_JUDGE
37     freopen("cow.in","r",stdin);
38     freopen("cow.out","w",stdout);
39 #endif
40     init();
41     solve();
42 #ifndef ONLINE_JUDGE
43     fclose(stdin);
44     fclose(stdout);
45 #endif
46     return 0;
47 }
View Code

 

 

转载于:https://www.cnblogs.com/Sunnie69/p/5425155.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值