CF1359D.Yet Another Yet Another Task

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alice and Bob are playing yet another card game. This time the rules are the following. There are nn cards lying in a row in front of them. The ii -th card has value aia_i .

First, Alice chooses a non-empty consecutive segment of cards [l;r][l; r] ( lrl \le r ). After that Bob removes a single card jj from that segment (ljr)(l \le j \le r) . The score of the game is the total value of the remaining cards on the segment (al+al+1++aj1+aj+1++ar1+ar)(a_l + a_{l + 1} + \dots + a_{j - 1} + a_{j + 1} + \dots + a_{r - 1} + a_r) . In particular, if Alice chooses a segment with just one element, then the score after Bob removes the only card is 00 .

Alice wants to make the score as big as possible. Bob takes such a card that the score is as small as possible.

What segment should Alice choose so that the score is maximum possible? Output the maximum score.

输入格式

The first line contains a single integer nn ( 1n1051 \le n \le 10^5 ) — the number of cards.

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 30ai30-30 \le a_i \le 30 ) — the values on the cards.

输出格式

Print a single integer — the final score of the game.

输入输出样例

  • 输入#1

    5
    5 -2 10 -1 4

    输出#1

    6
  • 输入#2

    8
    5 2 5 3 -30 -30 6 9

    输出#2

    10
  • 输入#3

    3
    -10 6 -15

    输出#3

    0

说明/提示

In the first example Alice chooses a segment [1;5][1;5] — the entire row of cards. Bob removes card 33 with the value 1010 from the segment. Thus, the final score is 5+(2)+(1)+4=65 + (-2) + (-1) + 4 = 6 .

In the second example Alice chooses a segment [1;4][1;4] , so that Bob removes either card 11 or 33 with the value 55 , making the answer 5+2+3=105 + 2 + 3 = 10 .

In the third example Alice can choose any of the segments of length 11 : [1;1][1;1] , [2;2][2;2] or [3;3][3;3] . Bob removes the only card, so the score is 00 . If Alice chooses some other segment then the answer will be less than 00 .

首页