CF1826D.Running Miles

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a street with nn sights, with sight number ii being ii miles from the beginning of the street. Sight number ii has beauty bib_i . You want to start your morning jog ll miles and end it rr miles from the beginning of the street. By the time you run, you will see sights you run by (including sights at ll and rr miles from the start). You are interested in the 33 most beautiful sights along your jog, but every mile you run, you get more and more tired.

So choose ll and rr , such that there are at least 33 sights you run by, and the sum of beauties of the 33 most beautiful sights minus the distance in miles you have to run is maximized. More formally, choose ll and rr , such that bi1+bi2+bi3(rl)b_{i_1} + b_{i_2} + b_{i_3} - (r - l) is maximum possible, where i1,i2,i3i_1, i_2, i_3 are the indices of the three maximum elements in range [l,r][l, r] .

输入格式

The first line contains a single integer tt ( 1t1051 \leq t \leq 10^5 ) — the number of test cases.

The first line of each test case contains a single integer nn ( 3n1053 \leq n \leq 10^5 ).

The second line of each test case contains nn integers bib_i ( 1bi1081 \leq b_i \leq 10^8 ) — beauties of sights ii miles from the beginning of the street.

It's guaranteed that the sum of all nn does not exceed 10510^5 .

输出格式

For each test case output a single integer equal to the maximum value bi1+bi2+bi3(rl)b_{i_1} + b_{i_2} + b_{i_3} - (r - l) for some running range [l,r][l, r] .

输入输出样例

  • 输入#1

    4
    5
    5 1 4 2 3
    4
    1 1 1 1
    6
    9 8 7 6 5 4
    7
    100000000 1 100000000 1 100000000 1 100000000

    输出#1

    8
    1
    22
    299999996

说明/提示

In the first example, we can choose ll and rr to be 11 and 55 . So we visit all the sights and the three sights with the maximum beauty are the sights with indices 11 , 33 , and 55 with beauties 55 , 44 , and 33 , respectively. So the total value is 5+4+3(51)=85 + 4 + 3 - (5 - 1) = 8 .

In the second example, the range [l,r][l, r] can be [1,3][1, 3] or [2,4][2, 4] , the total value is 1+1+1(31)=11 + 1 + 1 - (3 - 1) = 1 .

首页