日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

专题三--1003

發(fā)布時間:2025/4/9 编程问答 18 豆豆
生活随笔 收集整理的這篇文章主要介紹了 专题三--1003 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

題目

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

題目大意

跳棋只能從分?jǐn)?shù)小的棋子跳向分?jǐn)?shù)大的棋子,求最大得到的分?jǐn)?shù)(跳過棋子上的分?jǐn)?shù)和)
英語戰(zhàn)五渣表示這個英語題目很坑啊。。。憋了很長時間
是一個簡單的求最大上升子列和的模板題

AC代碼

  • #include<iostream>
  • #include<stdio.h>
  • #include<string.h>
  • using namespace std;
  • inline int MAX(int a, int b){
  • return a > b ? a : b;
  • }
  • int a[1010];
  • int dp[1010];
  • int main(){
  • //freopen("date.in","r",stdin);
  • //freopen("date.out","w",stdout);
  • int N, maxs, maxr,s;
  • while (cin >> N&&N != 0){
  • memset(dp, 0, sizeof(dp));
  • for (int i = 1; i<=N; i++){
  • cin >> a[i];
  • }
  • dp[1] = a[1];
  • maxr = a[1];
  • for (int k = 2; k <= N; k++){
  • maxs = -999999999;
  • s = 1;
  • for (int l = 1; l<k; l++){
  • if (a[k]>a[l]){
  • maxs = MAX(maxs, dp[l]);
  • s = l;
  • }
  • dp[k] = maxs + a[k];
  • }
  • /*if (dp[k]>maxr)
  • maxr = dp[k];*/
  • }
  • maxr = -999999999;
  • for (int i = 1; i <= N; i++){
  • if (dp[i] > maxr)
  • maxr = dp[i];
  • }
  • /*for(int i=1;i<=N;i++){
  • cout<<dp[i]<<endl;
  • }*/
  • cout << maxr << endl;
  • }
  • }


  • 來自為知筆記(Wiz)

    轉(zhuǎn)載于:https://www.cnblogs.com/liuzhanshan/p/5529323.html

    總結(jié)

    以上是生活随笔為你收集整理的专题三--1003的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

    如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。