Cow Bowling

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

题目大意:

    输入一个n层的三角形,第i层有i个数,求从第1层到第n层的所有路线中,权值之和最大的路线。

    规定:第i层的某个数只能连线走到第i+1层中与它位置相邻的两个数中的一个。

解题思路:

    动态规划。

    dp[i][j]=max(dp[i-1][j],dp[i-1][j-1]+data[i][j]

    因为dp数组的值只与上一行有关,用滚动数组优化了一下。(直接开成一维的了。。。)

Code(Mem:1184K Tim:32MS):

  1. /*************************************************************************
  2. > File Name: poj3176.cpp
  3. > Author: Enumz
  4. > Mail: 369372123@qq.com
  5. > Created Time: 2014年10月21日 星期二 19时38分18秒
  6. ************************************************************************/
  7. #include<iostream>
  8. #include<cstdio>
  9. #include<cstdlib>
  10. #include<string>
  11. #include<cstring>
  12. #include<list>
  13. #include<queue>
  14. #include<stack>
  15. #include<map>
  16. #include<set>
  17. #include<algorithm>
  18. #define MAXN 351
  19. using namespace std;
  20. int way[MAXN][MAXN],dp[MAXN][MAXN];
  21. int N;
  22. void Input()
  23. {
  24. cin>>N;
  25. for (int i=;i<=N;i++)
  26. for (int j=;j<=i;j++)
  27. scanf("%d",&way[i][j]);
  28. }
  29. void Solve()
  30. {
  31. memset(dp,,sizeof(dp));
  32. for (int i=;i<=N;i++)
  33. for (int j=;j<=i;j++)
  34. dp[i][j]=max(dp[i-][j],dp[i-][j-])+way[i][j];
  35. }
  36. void Output()
  37. {
  38. int ret=dp[N][];
  39. for (int i=;i<=N;i++)
  40. if (ret<dp[N][i]) ret=dp[N][i];
  41. cout<<ret<<endl;
  42. }
  43. int main()
  44. {
  45. Input();
  46. Solve();
  47. Output();
  48. return ;
  49. }

Code(滚动数组优化 Mem:224K Tim:47MS):

  1. /*************************************************************************
  2. > File Name: poj3176.cpp
  3. > Author: Enumz
  4. > Mail: 369372123@qq.com
  5. > Created Time: 2014年10月21日 星期二 19时38分18秒
  6. ************************************************************************/
  7. #include<iostream>
  8. #include<cstdio>
  9. #include<cstdlib>
  10. #include<string>
  11. #include<cstring>
  12. #include<list>
  13. #include<queue>
  14. #include<stack>
  15. #include<map>
  16. #include<set>
  17. #include<algorithm>
  18. #define MAXN 351
  19. using namespace std;
  20. int way[MAXN],dp[MAXN];
  21. int N;
  22. void Input()
  23. {
  24. cin>>N;
  25. memset(dp,,sizeof(dp));
  26. for (int i=; i<=N; i++)
  27. {
  28. for (int j=; j<=i; j++)
  29. scanf("%d",&way[j]);
  30. for (int j=i; j>=; j--)
  31. dp[j]=max(dp[j],dp[j-])+way[j];
  32. }
  33. }
  34. void Output()
  35. {
  36. int ret=dp[];
  37. for (int i=; i<=N; i++)
  38. if (ret<dp[i]) ret=dp[i];
  39. cout<<ret<<endl;
  40. }
  41. int main()
  42. {
  43. Input();
  44. Output();
  45. return ;
  46. }

POJ3176——Cow Bowling(动态规划)的更多相关文章

  1. POJ3176 Cow Bowling 2017-06-29 14:33 23人阅读 评论(0) 收藏

    Cow Bowling Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 19173   Accepted: 12734 Des ...

  2. Poj3176 Cow Bowling (动态规划 数字三角形)

    Description The cows don't use actual bowling balls when they go bowling. They each take a number (i ...

  3. POJ - 3176 Cow Bowling 动态规划

    动态规划:多阶段决策问题,每步求解的问题是后面阶段问题求解的子问题,每步决策将依赖于以前步骤的决策结果.(可以用于组合优化问题) 优化原则:一个最优决策序列的任何子序列本身一定是相当于子序列初始和结束 ...

  4. poj-3176 Cow Bowling &&poj-1163 The Triangle && hihocoder #1037 : 数字三角形 (基础dp)

    经典的数塔模型. 动态转移方程:  dp[i][j]=max(dp[i+1][j],dp[i+1][j+1])+p[i][j]; #include <iostream> #include ...

  5. POJ3176:Cow Bowling(数字三角形问题)

    地址:http://poj.org/problem?id=3176 题目解析:没什么好说的,之前上课时老师讲过.从下往上找,每一个三角形的顶点可由两个角加上顶点的值 两种方式得到 ,用dp数组保存下最 ...

  6. POJ 3176 Cow Bowling(dp)

    POJ 3176 Cow Bowling 题目简化即为从一个三角形数列的顶端沿对角线走到底端,所取得的和最大值 7 * 3 8 * 8 1 0 * 2 7 4 4 * 4 5 2 6 5 该走法即为最 ...

  7. POJ 3176 Cow Bowling

    Cow Bowling Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13016   Accepted: 8598 Desc ...

  8. Cow Bowling

    Cow Bowling Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 15585 Accepted: 10363 Descrip ...

  9. POJ 3176:Cow Bowling

    Cow Bowling Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13464   Accepted: 8897 Desc ...

随机推荐

  1. 20145129 《Java程序设计》第4周学习总结

    20145129 <Java程序设计>第4周学习总结 教材学习内容总结 继承与多肽 继承共同行为 继承是避免多个类间重复定义共同行为.(将相同的代码提升为父类) 关键字extends:表示 ...

  2. Notes of the scrum meeting(11/3)

    meeting time:19:30~20:00p.m.,November 3th,2013 meeting place:20号公寓楼前 attendees: 顾育豪                  ...

  3. 基于OpenMP的矩阵乘法实现及效率提升分析

    一.  矩阵乘法串行实现 例子选择两个1024*1024的矩阵相乘,根据矩阵乘法运算得到运算结果.其中,两个矩阵中的数为double类型,初值由随机数函数产生.代码如下: #include <i ...

  4. 委托、匿名委托和lambda表达式

    1.委托 在.NET中,委托有点类似于C/C++中的函数指针,但与指针不同的是,委托是一种安全的类型,那么我们就以实现两个数的差为例,先声明一个成员方法: public int CompareTwoV ...

  5. AxMicrosoft.Office.Interop.Owc11.AxSpreadsheet控件在C#中的引用

    这几天要是用AxMicrosoft.Office.Interop.Owc11.AxSpreadsheet控件做查询,发现一系列问题,一点点记录下来吧,以备后查: 第一.相关属性:http://www. ...

  6. 手把手教你自动生成Makefile

    概述:autoconf/automake工具用于自动创建功能完善的Makefile文件,接下来简单介绍一下,如何使用上述工具 自动生成Makefile 前提:安装autoconf工具(ubuntu:s ...

  7. angular 嵌套实现树结构 ng-repeat ng-include

    效果图 ang.html <!doctype html><html lang="en"><head>    <meta charset=& ...

  8. css中的border还可以这样玩

    在看这篇文章之前你可能会觉得border只是简单的绘制边框,看了这篇文章,我相信你也会跟我一样说一句"我靠,原来css中的border还可以这样玩".这篇文章主要是很早以前看了别人 ...

  9. JQuery选择器使用

    问题描述:         JQuery选择器使用   问题说明:       1.在页面中创建一个导航条,单击标题时,可以伸缩导航条的内容,标题中的提示图片也随之改变       2.单击" ...

  10. Leetcode#59 Spiral Matrix II

    原题地址 相比于Spiral Matrix(参见这篇文章)要简单一些,因为是方阵,所以代码简洁一些. 注意当n是奇数的时候,中心小块要单独赋值(代码21行) 代码: vector<vector& ...