Problem G
Greatest Permutation
A permutation with
For a permutation, let’s define its weight as the minimum number of times you need to swap two consecutive elements, so that the permutation becomes a great permutation.
For example, the weight of
-
Swap the
st and nd element: , -
Swap the
rd and th element: .
You are given a sequence representing a permutation with
some missing elements. You need to calculate the minimum weight among all permutations which can
be obtained by replacing missing elements with certain values.
For example, given the sequence
Input
The first line of the input contains a single integer
-
The first line contains a single integer
— the number of elements of the given permutation. -
The second line contains
space-separated integers . It is guaranteed that you can get at least one valid permutation after changing all s to other values.
The sum of
Output
For each test case, print the result in a single line.
Sample Input 1 | Sample Output 1 |
---|---|
2 4 3 2 1 4 4 2 3 0 0 |
2 0 |