CF1706C.Qpwoeirut And The City

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Qpwoeirut has taken up architecture and ambitiously decided to remodel his city.

Qpwoeirut's city can be described as a row of nn buildings, the ii -th ( 1in1 \le i \le n ) of which is hih_i floors high. You can assume that the height of every floor in this problem is equal. Therefore, building ii is taller than the building jj if and only if the number of floors hih_i in building ii is larger than the number of floors hjh_j in building jj .

Building ii is cool if it is taller than both building i1i-1 and building i+1i+1 (and both of them exist). Note that neither the 11 -st nor the nn -th building can be cool.

To remodel the city, Qpwoeirut needs to maximize the number of cool buildings. To do this, Qpwoeirut can build additional floors on top of any of the buildings to make them taller. Note that he cannot remove already existing floors.

Since building new floors is expensive, Qpwoeirut wants to minimize the number of floors he builds. Find the minimum number of floors Qpwoeirut needs to build in order to maximize the number of cool buildings.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases.

The first line of each test case contains the single integer nn ( 3n1053 \le n \le 10^5 ) — the number of buildings in Qpwoeirut's city.

The second line of each test case contains nn integers h1,h2,,hnh_1, h_2, \ldots, h_n ( 1hi1091 \le h_i \le 10^9 ) — the number of floors in each of the buildings of the city.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, print a single integer — the minimum number of additional floors Qpwoeirut needs to build in order to maximize the number of cool buildings.

输入输出样例

  • 输入#1

    6
    3
    2 1 2
    5
    1 2 1 4 3
    6
    3 1 4 5 5 2
    8
    4 2 1 3 5 3 6 1
    6
    1 10 1 1 10 1
    8
    1 10 11 1 10 11 10 1

    输出#1

    2
    0
    3
    3
    0
    4

说明/提示

In the first test case, it is optimal for Qpwoeirut to make the second building cool by building 22 additional floors on top of it, making it taller than both of its adjacent buildings. The final heights of buildings will be [2,3,2][2, \underline{3}, 2] .

In the second test case, the number of cool buildings is already maximized, so Qpwoeirut does not need to do anything.

In the third test case, it is optimal for Qpwoeirut to make the third and fifth buildings cool by building 22 additional floors onto the third building and 11 additional floor onto the fifth building. The final heights of buildings will be [3,1,6,5,6,2][3, 1, \underline{6}, 5, \underline{6}, 2] .

It can be shown that it is impossible to make more than 22 of the buildings cool, or to make 22 buildings cool using fewer than 33 additional floors.

In the fourth test case, Qpwoeirut can either make the second building cool, or he can make the third building cool. Either way, he will be building 33 additional floors and maximizing the number of cool buildings. The final heights of buildings will be [4,2,4,3,5,3,6,1][4, 2, \underline{4}, 3, 5, 3, 6, 1] or [4,5,1,3,5,3,6,1][4, \underline{5}, 1, 3, 5, 3, 6, 1] .

首页