zoukankan      html  css  js  c++  java
  • 解题报告 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 }
  • 相关阅读:
    字,字节,字长,位的概念与区分
    Prim算法、Kruskal算法、Dijkstra算法
    关联容器
    各种排序算法的性能特点
    随机种子
    实参&形参
    C++中的I/O输入输出问题
    NLPIR智能KGB知识图谱引擎可视化数据挖掘
    NLPIR-KGB知识图谱引擎突破传统数据挖掘束缚
    NLPIR大数据语义系统KGB技术引领新方向
  • 原文地址:https://www.cnblogs.com/verlen11/p/4245105.html
Copyright © 2011-2022 走看看