描述


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:

  1. 7
  2.  
  3. 3 8
  4.  
  5. 8 1 0
  6.  
  7. 2 7 4 4
  8.  
  9. 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

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

Sample Output

  1. 30

Hint

Explanation of the sample:

  1. 7

  2. *

  3. 3 8

  4. *

  5. 8 1 0

  6. *

  7. 2 7 4 4

  8. *

  9. 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=;
  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]!=-) 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+,j),dfs(i+,j+));
  15. }
  16.  
  17. void init()
  18. {
  19. scanf("%d",&n);
  20. for(int i=;i<=n;i++)
  21. {
  22. for(int j=;j<=i;j++)
  23. {
  24. scanf("%d",&a[i][j]);
  25. }
  26. }
  27. memset(f,-,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(,));
  38. #ifndef ONLINE_JUDGE
  39. fclose(stdin);
  40. fclose(stdout);
  41. #endif
  42. return ;
  43. }

动态规划:

  1. #include<cstdio>
  2. #include<algorithm>
  3. using std :: max;
  4.  
  5. const int maxn=;
  6. int n;
  7. int a[maxn][maxn],f[maxn][maxn];
  8.  
  9. void solve()
  10. {
  11. for(int i=n-;i>=;i--)
  12. {
  13. for(int j=;j<=i;j++)
  14. {
  15. f[i][j]=max(f[i+][j],f[i+][j+])+a[i][j];
  16. }
  17. }
  18. printf("%d\n",f[][]);
  19. }
  20.  
  21. void init()
  22. {
  23. scanf("%d",&n);
  24. for(int i=;i<=n;i++)
  25. {
  26. for(int j=;j<=i;j++)
  27. {
  28. scanf("%d",&a[i][j]);
  29. }
  30. }
  31. for(int j=;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 ;
  47. }

POJ_3176_Cow_Bowling_(数字三角形)_(动态规划)的更多相关文章

  1. hihoCoder #1037 : 数字三角形 (动态规划)

    题目链接:https://hihocoder.com/problemset/problem/1037# 问题描述 小Hi和小Ho在经历了螃蟹先生的任务之后被奖励了一次出国旅游的机会,于是他们来到了大洋 ...

  2. 动态规划略有所得 数字三角形(POJ1163)

    在上面的数字三角形中寻找一条从顶部到底边的路径,使得路径上所经过的数字之和最大.路径上的每一步都只能往左下或 右下走.只需要求出这个最大和即可,不必给出具体路径. 三角形的行数大于1小于等于100,数 ...

  3. 动态规划入门——数字三角形(Java)

    动态规划的概念对于新手来说枯燥难懂,就算看懂了,做题的时候依旧抓耳挠腮的毫无头绪,这些比较难理解的算法,还是需要根据例子来一步步学习和理解,从而熟练掌握,下面,咱们就通过一个简单的小例子来学习动态规划 ...

  4. Problem C: 动态规划基础题目之数字三角形

    Problem C: 动态规划基础题目之数字三角形 Time Limit: 1 Sec  Memory Limit: 64 MBSubmit: 208  Solved: 139[Submit][Sta ...

  5. [动态规划]数字三角形(版本I-III)

    level 1 1.1题目 1.1.1题目描述 考虑在下面被显示的数字金字塔. 写一个程序来计算从最高点开始在底部任意处结束的路径经过数字的和的最大.每一步可以走到左下方的点也可以到达右下方的点. 在 ...

  6. [蓝桥杯]ALGO-124.算法训练_数字三角形

    问题描述 (图3.1-1)示出了一个数字三角形. 请编一个程序计算从顶至底的某处的一条路 径,使该路径所经过的数字的总和最大. ●每一步可沿左斜线向下或右斜线向下走: ●<三角形行数≤: ●三角 ...

  7. 动态规划之数字三角形(POJ1163)

    在下面的数字三角形中寻找一条从顶部到底边的路径,使得路径上所经过的数字之和最大.路径上的每一步都只能往左下或 右下走.只需要求出这个最大和即可,不必给出具体路径. 既然求目标问题是根据查表得来的,自然 ...

  8. vijos 1006 晴天小猪历险记之Hill——数字三角形的终极变化

    题目链接:https://vijos.org/p/1006 数字三角形原题看这里:http://www.cnblogs.com/huashanqingzhu/p/7326837.html 背景 在很久 ...

  9. G:数字三角形

    总时间限制: 1000ms 内存限制: 65536kB描述73   88   1   02   7   4   44   5   2   6   5 (图1) 图1给出了一个数字三角形.从三角形的顶部 ...

随机推荐

  1. 10个你可能不知道的JavaScript小技巧

    1.变量转换 看起来很简单,但据我所看到的,使用构造函数,像Array()或者Number()来进行变量转换是常用的做法.始终使用原始数据类型(有时也称为字面量)来转换变量,这种没有任何额外的影响的做 ...

  2. 我也来学着写写WINDOWS服务-解析xml抓取数据并插入数据库

    项目告一段落,快到一年时间开发了两个系统,一个客户已经在试用,一个进入客户测试阶段,中间突然被项目经理(更喜欢叫他W工)分派一个每隔两小时用windows服务去抓取客户提供的外网xml,解析该xml, ...

  3. iOS 获取设备型号以及IP地址

    首先导入四个头文件 #include <sys/types.h> #include <sys/sysctl.h> #include <ifaddrs.h> #inc ...

  4. C语言——打印魔方阵(每一行,每一列,对角线之和相等)

    <一>魔方阵说明: 魔方阵是一个N*N的矩阵: 该矩阵每一行,每一列,对角线之和都相等: <二>魔方阵示例: 三阶魔方阵: 8   1   6 3   5   7 4   9 ...

  5. Fibonacci数列的java实现

    关于Fibonacci应该都比较熟悉,0,1,1,2,3..... 基本公式为f(n) = f(n-1) + f(n-2); f(0) = 0; f(1) =1; 方法1:可以运用迭代的方法实现: p ...

  6. HDU 4294 A Famous Equation(DP)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4249 题目大意:给一个a+b=c的表达式,但是a.b.c中部分位的数字丢失,并用?代替,问有多少种方案 ...

  7. 设计模式之开篇(C#语法)

    很长时间没有写文章了,前段时间写的C#语法糖分享得到有很多朋友支持,这个也使得我有信心继续分享下去,在这里非常感谢大家!这次开始给大家分享一下设计模式,我个人觉得设计模式也对于我们提高个人技术水平来说 ...

  8. [转]Android应用的自动更新

    软件的自动更新一般都与Splash界面绑定在一起, 由于需要维护的软件界面很复杂, 一个Activity中嵌入ViewPager, 并且逻辑比较复杂, 索性重新写一个Activity, 现在的软件都很 ...

  9. PHP全局变量

    1.global 关键字 2.$GLOBALS 3.使用静态变量

  10. odoo 清除所有运行数据

    测试odoo,如果需要一个干净的db.经常需要清除掉所有业务数据.做如下操作,较为方便 1:建立一个服务器动作,动作的python代码入下. 然后新建一个菜单,菜单动作关联到 这个动作.需要清空db, ...