a787: Kefa and First Steps ( Kefa 的第一步 )
Tags : 900 dp implementation
Accepted rate : 28人/29人 ( 97% ) [非即時]
評分方式:
Tolerant

最近更新 : 2022-07-26 13:24

Content

Kefa decided to make some money doing business on the Internet for exactly n days. He knows that on the i-th day (1 ≤ i ≤ n) he makes ai money. Kefa loves progress, that's why he wants to know the length of the maximum non-decreasing subsegment in sequence ai. Let us remind you that the subsegment of the sequence is its continuous fragment. A subsegment of numbers is called non-decreasing if all numbers in it follow in the non-decreasing order.

Help Kefa cope with this task!

Kefa 決定在網上做正好n天的生意賺點錢。 他知道在第 i 天(1 ≤ i ≤ n)他賺了 ai 錢。 Kefa 喜歡進步,所以他想知道序列 ai 中最大非遞減子段的長度。 讓我們提醒您,序列的子片段是它的連續片段。 如果其中的所有數字都遵循非遞減順序,則稱為非遞減數字子段。

幫助 Kefa 應對這個任務!

Input

The first line contains integer n (1 ≤ n ≤ 105).

The second line contains n integers a1,  a2,  ...,  an (1 ≤ ai ≤ 109).

第一行包含整數 n (1 ≤ n ≤ 105)。

第二行包含 n 個整數 a1,  a2,  ...,  an (1 ≤ ai ≤ 109)。

Output

Print a single integer — the length of the maximum non-decreasing subsegment of sequence a.

打印一個整數 — 序列 a 的最大非遞減子段的長度。

Sample Input #1
6
2 2 1 3 4 1
Sample Output #1
3
Sample Input #2
3
2 2 9
Sample Output #2
3
測資資訊:
記憶體限制: 64 MB
公開 測資點#0 (4%): 0.4s , <1K
公開 測資點#1 (4%): 0.4s , <1K
公開 測資點#2 (4%): 0.4s , <1K
公開 測資點#3 (4%): 0.4s , <1K
公開 測資點#4 (4%): 0.4s , <1K
公開 測資點#5 (4%): 0.4s , <1K
公開 測資點#6 (4%): 0.4s , <1K
公開 測資點#7 (4%): 0.4s , <1K
公開 測資點#8 (4%): 0.4s , <1K
公開 測資點#9 (4%): 0.4s , <1K
公開 測資點#10 (4%): 0.4s , <1M
公開 測資點#11 (4%): 0.4s , <1M
公開 測資點#12 (4%): 0.4s , <1M
公開 測資點#13 (4%): 0.4s , <1M
公開 測資點#14 (4%): 0.4s , <1M
公開 測資點#15 (4%): 0.4s , <1M
公開 測資點#16 (4%): 0.4s , <1M
公開 測資點#17 (4%): 0.4s , <1M
公開 測資點#18 (4%): 0.4s , <1M
公開 測資點#19 (4%): 0.4s , <1M
公開 測資點#20 (4%): 0.4s , <1M
公開 測資點#21 (4%): 0.4s , <1M
公開 測資點#22 (4%): 0.4s , <1M
公開 測資點#23 (4%): 0.4s , <1M
公開 測資點#24 (4%): 0.4s , <1M
Hint :

In the first test the maximum non-decreasing subsegment is the numbers from the third to the fifth one.

In the second test the maximum non-decreasing subsegment is the numbers from the first to the third one.

在第一個測試中,最大的非遞減子段是從第三個到第五個的數字。

在第二個測試中,最大的非遞減子段是從第一個到第三個的數字。

Tags:
900 dp implementation
出處:
Codeforces Round #321 [管理者:
lamkinun@gma... (Kinda Lam)
]


ID User Problem Subject Hit Post Date
沒有發現任何「解題報告」