atcoder#ABC201F. [ABC201F] Insertion Sort
[ABC201F] Insertion Sort
Score : points
Problem Statement
There are people, who are given ID numbers through , standing in a row from left to right. Initially, the ID number of the -th person from the left is .
Your objective is to rearrange the people in ascending order of the ID number from left to right, by repeatedly doing the three kinds of operations below. You can do these operations any number of times (possibly zero) in any order.
- Choose an integer , pay the cost , and move Person (the person with the ID number ) to any position of your choice.
- Choose an integer , pay the cost , and move Person to the left end of the row.
- Choose an integer , pay the cost , and move Person to the right end of the row.
Minimize the total cost you pay before achieving the objective.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the minimum total cost you need to pay before achieving the objective.
3
3 1 2
9 3 5
8 6 4
9 4 6
6
You can rearrange the people in ascending order of the ID number by paying the cost to move Person to the right end.
There is no way to rearrange the people that costs less, so the answer is .
6
2 6 5 3 4 1
10 8 16
30 2 10
10 17 8
11 27 22
8 6 5
15 29 2
15
The following sequence of operations minimizes the total cost:
- pay the cost to move Person to the left end;
- pay the cost to move Person to the right end;
- pay the cost to move Person to the right end.
9
3 8 4 7 6 9 1 5 2
7976 3696 9706
768 8807 8521
1133 8683 7120
1189 3331 2259
900 7451 1159
6126 2639 7107
5540 8253 2891
8417 4220 9091
8732 1417 1540
15865
12
11 9 1 12 2 7 3 5 10 4 6 8
3960 3158 9029
6521 6597 7581
5688 2299 2123
4946 4298 9122
394 4350 9142
3098 7151 2039
8525 3758 6155
6970 3658 9353
9780 1778 3608
6065 5562 923
9701 5524 6482
9395 6016 705
20637