zoukankan      html  css  js  c++  java
  • HDU 1087 Super Jumping....(动态规划之最大递增子序列和)

    Super Jumping! Jumping! Jumping!

    Problem Description
    Nowadays, a kind of chess game called “Super Jumping! Jumping! Jumping!” is very popular in HDU. Maybe you are a good boy, and know little about this game, so I introduce it to you now.



    The game can be played by two or more than two players. It consists of a chessboard(棋盘)and some chessmen(棋子), and all chessmen are marked by a positive integer or “start” or “end”. The player starts from start-point and must jumps into end-point finally. In the course of jumping, the player will visit the chessmen in the path, but everyone must jumps from one chessman to another absolutely bigger (you can assume start-point is a minimum and end-point is a maximum.). And all players cannot go backwards. One jumping can go from a chessman to next, also can go across many chessmen, and even you can straightly get to end-point from start-point. Of course you get zero point in this situation. A player is a winner if and only if he can get a bigger score according to his jumping solution. Note that your score comes from the sum of value on the chessmen in you jumping path.
    Your task is to output the maximum value according to the given chessmen list.
     
    Input
    Input contains multiple test cases. Each test case is described in a line as follow:
    N value_1 value_2 …value_N 
    It is guarantied that N is not more than 1000 and all value_i are in the range of 32-int.
    A test case starting with 0 terminates the input and this test case is not to be processed.
     
    Output
    For each case, print the maximum according to rules, and one line one case.
     
    Sample Input
    3 1 3 2
    4 1 2 3 4
    4 3 3 2 1
    0
     
    Sample Output
    4
    10
    3
     
    题目大意:给定一个序列包含n个数,求出最大子序列和
    思路:对每一个数,我们可以和它之前的所有数比较,若当前数大于前面的数的时候有状态转移方程:dp[i] = max(dp[i],dp[j]+a[i]);//其中j为前面那个数,i为当前的数,a[i]为第i个位置上的数,最后取所有dp[]中的最大值即可
     1 #include<iostream>
     2 #include<algorithm>
     3 #include<cstring>
     4 
     5 using namespace std;
     6 typedef long long LL;
     7 const int maxn = 1010;
     8 LL n, a[maxn], dp[maxn];
     9 int main()
    10 {
    11     ios::sync_with_stdio(false);
    12     while (cin >> n && n) {
    13         memset(a, 0, sizeof(a));
    14         memset(dp, 0, sizeof(dp));
    15         for (int i = 1; i <= n; i++)cin >> a[i], dp[i] = a[i];
    16         for (int i = 2; i <= n; i++)
    17             for (int j = 1; j < i; j++)
    18                 if (a[i] > a[j])
    19                     dp[i] = max(dp[i], dp[j] + a[i]);
    20         LL ans = 0;
    21         for (int i = 1; i <= n; i++)ans = max(ans, dp[i]);
    22         cout << ans << endl;
    23     }
    24     return 0;
    25 }
    View Code
  • 相关阅读:
    oc对象的内存管理
    OC类的本质,深入探讨,load方法和initialize方法
    OC特有语法:分类category,给NSString增加方法计算字符串中数字的个数
    OC的类的构造方法
    OC的@property 和 @synthesize id
    HTML5 Canvas时间效果
    各浏览器的Hack写法【转】
    你自认为理解了JavaScript?【转】
    八大疯狂的HTML5 Canvas及WebGL动画效果——8 CRAZY ANIMATIONS WITH WEBGL AND HTML5 CANVAS【收藏】
    一些达成共识的JavaScript编码风格约定【转】
  • 原文地址:https://www.cnblogs.com/wangrunhu/p/9520532.html
Copyright © 2011-2022 走看看