CF1795E.Explosions?
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are playing yet another game where you kill monsters using magic spells. There are n cells in the row, numbered from 1 to n . Initially, the i -th cell contains the i -th monster with hi health.
You have a basic spell that costs 1 MP and deals 1 damage to the monster you choose. You can cast it any number of times. Also, you have a special scroll with "Explosion" spell you can use only once. You want to finish killing monsters with explosion, that's why you, firstly, cast the basic spell several times (possibly, zero), and then after that, you cast one "Explosion".
How does "Explosion" spell work? Firstly, you choose the power of the spell: if you pour x MP into it, "Explosion" will deal x damage. Secondly, you choose some monster i , which will be targeted by the spell. That's what happens next:
- if its current health hi>x , then he stays alive with health decreased by x ;
- if hi≤x , the i -th monster dies with an explosion that deals hi−1 damage to monsters in the neighboring cells i−1 and i+1 , if these cells exist and monsters inside are still alive;
- if the damage dealt by the explosion is enough to kill the monster i−1 (or i+1 ), i. e. the current hi−1≤hi−1 (or hi+1≤hi−1 ), then that monster also dies creating a secondary explosion of power hi−1−1 (or hi+1−1 ) that may deals damage to their neighbors, and so on, until the explosions end.
Your goal is to kill all the remaining monsters with those "chaining" explosions, that's why you need a basic spell to decrease hi of some monsters or even kill them beforehand (monsters die when their current health hi becomes less or equal to zero). Note that monsters don't move between cells, so, for example, monsters i and i+2 will never become neighbors.
What is the minimum total MP you need to kill all monsters in the way you want? The total MP is counted as the sum of the number of basic spells you cast and the power x of explosion scroll you've chosen.
输入格式
The first line contains one integer t ( 1≤t≤104 ) — the number of test cases.
The first line of each test case contains the single integer n ( 1≤n≤3⋅105 ) — the number of cells in the row, i. e. the number of monsters.
The second line of each test case contains n integers h1,h2,…,hn ( 1≤hi≤106 ) — the initial health of the monsters.
It's guaranteed that the sum of n over all test cases doesn't exceed 3⋅105 .
输出格式
For each test case, print one integer — the minimum total MP you need to kill all monsters by finishing them with explosion.
输入输出样例
输入#1
5 3 1 1 1 4 4 1 2 1 4 5 10 15 10 1 42 9 1 2 3 2 2 2 3 2 1
输出#1
3 6 15 42 12
说明/提示
In the first test case, you can, for example, use basic spell on monsters 1 and 2 (once per monster) to kill them. After that, you cast "Explosion" of power x=1 on monster 3 to kill it. The total MP you need is 2+1=3 .
In the second test case, it's optimal to cast basic spell 4 times onto monster 1 to kill it. After that, you can cast "Explosion" of power x=2 onto monster 3 . It dies, creating an explosion of power 1 that kills monsters 2 and 4 . The total MP you need is 4+2=6 .
In the third test case, you cast "Explosion" of power 15 onto monster 3 . Explosion of the 3 -rd monster (of power 14 ) kills monsters 2 and 4 . Secondary explosion of monster 2 (of power 9 ) kills monster 1 .