#aising2020e. [aising2020_e]Camel Train
[aising2020_e]Camel Train
Problem Statement
We have camels numbered . Snuke has decided to make them line up in a row.
The happiness of Camel will be if it is among the frontmost camels, and otherwise.
Snuke wants to maximize the total happiness of the camels. Find the maximum possible total happiness of the camel.
Solve this problem for each of the test cases given.
Constraints
- All values in input are integers.
- The sum of values of in each input file is at most .
Input
Input is given from Standard Input in the following format:
Each case is given in the following format:
Output
Print lines. The -th line should contain the answer to the -th test case.
Sample Input 1
3
2
1 5 10
2 15 5
3
2 93 78
1 71 59
3 57 96
19
19 23 16
5 90 13
12 85 70
19 67 78
12 16 60
18 48 28
5 4 24
12 97 97
4 57 87
19 91 74
18 100 76
7 86 46
9 100 57
3 76 73
6 84 93
1 6 84
11 75 94
19 15 3
12 11 34
Sample Output 1
25
221
1354
- In the first test case, it is optimal to line up the camels in the order .
- Camel is not the frontmost camel, so its happiness will be .
- Camel is among the two frontmost camels, so its happiness will be .
- In the second test case, it is optimal to line up the camels in the order .
- Camel is among the two frontmost camels, so its happiness will be .
- Camel is the frontmost camel, so its happiness will be .
- Camel is among the three frontmost camels, so its happiness will be .