Preparando MOJI

Jeff and Permutation

2000ms 262144K

Description:

Jeff's friends know full well that the boy likes to get sequences and arrays for his birthday. Thus, Jeff got sequence p1, p2, ..., pn for his birthday.

Jeff hates inversions in sequences. An inversion in sequence a1, a2, ..., an is a pair of indexes i, j (1 ≤ i < j ≤ n), such that an inequality ai > aj holds.

Jeff can multiply some numbers of the sequence p by -1. At that, he wants the number of inversions in the sequence to be minimum. Help Jeff and find the minimum number of inversions he manages to get.

Input:

The first line contains integer n (1 ≤ n ≤ 2000). The next line contains n integers — sequence p1, p2, ..., pn (|pi| ≤ 105). The numbers are separated by spaces.

Output:

In a single line print the answer to the problem — the minimum number of inversions Jeff can get.

Sample Input:

2
2 1

Sample Output:

0

Sample Input:

9
-2 0 -1 0 -1 2 1 0 -1

Sample Output:

6

Informação

Codeforces

Provedor Codeforces

Código CF351E

Tags

greedy

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:46:55

Relacionados

Nada ainda