HDU 1231 最大連續子串行

2021-07-22 05:21:16 字數 1343 閱讀 5053

question

description

給定k個整數的序列,其任意連續子串行可表示為,其中 1 <= i <= j <= k。最大連續子串行是所有連續子串行中元素和最大的乙個,

例如給定序列,其最大連續子串行為,最大和

為20。

在今年的資料結構考卷中,要求編寫程式得到最大和,現在增加乙個要求,即還需要輸出該

子串行的第乙個和最後乙個元素。

input

測試輸入包含若干測試用例,每個測試用例佔2行,第1行給出正整數k( < 10000 ),第2行給出k個整數,中間用空格分隔。當k為0時,輸入結束,該用例不被處理。

output

對每個測試用例,在1行裡輸出最大和、最大連續子串行的第乙個和最後乙個元

素,中間用空格分隔。如果最大連續子串行不唯一,則輸出序號i和j最小的那個(如輸入樣例的第2、3組)。若所有k個元素都是負數,則定義其最大和為0,輸出整個序列的首尾元素。

sample input

6 -2 11 -4 13 -5 -2

10 -10 1 2 3 4 -5 -23 3 7 -21

6 5 -8 3 2 5 0

1 10

3 -1 -5 -2

3 -1 0 -2

0 sample output

20 11 13

10 1 4

10 3 5

10 10 10

0 -1 -2

0 0 0

huge input, scanf is recommended.

解題思路:找到以每乙個數結尾的最大連續序列,在接下來的比較中先儲存結尾數的下標,再根據結尾數的下標推出開始數。簡單dp題

(

#include 

#include

#include

using

namespace

std;

typedef

long

long ll;

const

int max=0x3f3f3f3f;

ll dp[10005],a[10005];

int main()

}for(int i=t1;i>0;i--)

if(ans<0)

cout

<<0

<<" "

<1]<<" "

cout

<" "

<" "

0;}

體會:求最大連續序列時就要找以乙個數起始或者結尾最大值

hdu 1231 最大連續子串行

狀態方程dp i max dp i 1 a i a i dp 0 a 0 include include include include include include include include include include include include include includeus...

HDU 1231 最大連續子串行

problem description 給定k個整數的序列,其任意連續子串行可表示為,其中 1 i j k。最大連續子串行是所有連續子串行中元素和最大的乙個,例如給定序列,其最大連續子串行為,最大和 為20。在今年的資料結構考卷中,要求編寫程式得到最大和,現在增加乙個要求,即還需要輸出該 子串行的第...

HDU1231 最大連續子串行

problem description 給定k個整數的序列,其任意連續子串行可表示為,其中 1 i j k。最大連續子串行是所有連續子串行中元素和最大的乙個,例如給定序列,其最大連續子串行為,最大和 為20。在今年的資料結構考卷中,要求編寫程式得到最大和,現在增加乙個要求,即還需要輸出該 子串行的第...