• 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
  • 相关阅读:
    android 手把手教您自定义ViewGroup(一)
    mac下tomcat的安装与配置
    jarsigner签名报错Invalid keystore format
    android上引入七牛 上传图片或者文件 最终整理版本(可用)
    viewpage listview gridview加载本地大图多图OOM处理办法
    android TextView 文字垂直的设置
    javascript技巧之实现add方法无限调用
    jQuery源码分析之ready方法
    jQuery源码分析之Callbacks方法
    jQuery源码分析之extend方法
  • 原文地址:https://www.cnblogs.com/wangrunhu/p/9520532.html
Copyright © 2020-2023  润新知