• 解题报告 HDU1087 Super Jumping! Jumping! Jumping!


    Super Jumping! Jumping! Jumping!

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)


    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
     
    分析:
      一道经典的dp题 这道题规定了起点和终点 我们以位置为状态 记录这个位置之前到它的最大数据  这道题以某个位置为起点是很难思考的 
      状态转移方程:dp[i]=max(dp[i],dp[j]+a[i])
     
    AC代码:
     1 #include<iostream>
     2 #include<string>
     3 using namespace std;
     4 int dp[1001],a[1001];
     5 int t;
     6 int main()
     7 {
     8     while(cin>>t&&t)
     9     {
    10         for(int i=1;i<=t;i++)
    11         {
    12             cin>>a[i];
    13             dp[i]=a[i];
    14         }
    15         for(int i=1;i<=t;i++)
    16         {
    17             for(int j=1;j<i;j++)
    18             {
    19                 if(a[i]>a[j])
    20                     dp[i]=max(dp[i],dp[j]+a[i]);
    21             }
    22         }
    23         int sum=0;
    24         for(int i=0;i<=t;i++)
    25             sum=max(sum,dp[i]);
    26         cout<<sum<<endl;
    27     }
    28     return 0;
    29 }
  • 相关阅读:
    java将文件夹md5为名的图片与数据库查询对应md5后导入相应图片到某分类下
    java 导入图片时忘了导入诊断报告,查询报告并将缺失的报告插入对应分类图片中
    安装nginx
    python,opencv,8位图转24位图
    python 笔记
    python,opencv图像增强
    问卷星的使用教程
    考研数据结构复习随笔-基本概念(一)
    按字寻址 按字节寻址
    在数据结构中用顺序栈解决括号匹配问题
  • 原文地址:https://www.cnblogs.com/verlen11/p/4245105.html
Copyright © 2020-2023  润新知