atcoder#ABC163E. [ABC163E] Active Infants
[ABC163E] Active Infants
Score : points
Problem Statement
There are children standing in a line from left to right. The activeness of the -th child from the left is .
You can rearrange these children just one time in any order you like.
When a child who originally occupies the -th position from the left in the line moves to the -th position from the left, that child earns happiness points.
Find the maximum total happiness points the children can earn.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum total happiness points the children can earn.
4
1 3 4 2
20
If we move the -st child from the left to the -rd position from the left, the -nd child to the -th position, the -rd child to the -st position, and the -th child to the -nd position, the children earns $1 \times |1-3|+3 \times |2-4|+4 \times |3-1|+2 \times |4-2|=20$ happiness points in total.
6
5 5 6 1 1 1
58
6
8 6 9 1 2 1
85