#Lutece0415. Hash Table

Hash Table

Migrated from Lutece 415 Hash Table

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Akemi Homura is a Mahou Shoujo (Puella Magi/Magical Girl).

To help her friend Madoka save the world, Homura need to collect data, and she choose a kind of data structure called Hash Table.

I suppose all of you are familiar with the Hash Table (if not, you won't take part in the competition!), for a piece of data DD, the Hash Function HH gives a Hash Key: H(D)H(D), and the data will be stored in Hash Table [H(D)][H(D)]. For two pieces of data D1D_1 and D2D_2, if their Hash Keys are the same (H(D1)=H(D2)H(D_1) = H(D_2)), we say an COLLUSION occurs. D1D_1 and D2D_2 cannot be stored in the same position of the Hash Table. The most convenient way to solve the problem is linear probing.

We assume that D1D_1 has been inserted into Hash Table [H(D1)][H(D_1)], now if we need to insert D2D_2 into the Hash Table, since Hash Table [H(D1)][H(D_1)] has been occupied by D1D_1, D2D_2 has to find the next position of H(D1)H(D_1): Hash Table [H(D1)+1][H(D_1)+1]. If Hash Table [H(D1)+1][H(D_1)+1] is also occupied, D2D_2 has to find the next position of H(D1)+1H(D_1)+1: Hash Table [H(D1)+1][H(D_1)+1] ... Till D2D_2 finds an unoccupied position: Hash Table [p][p], and be stored in it.

As It is known that Homura has magic that can control time, she can rearrange the order that data is inserted into the Hash Table in. Given NN Hash Keys H(D1),H(D2),,H(DN)H(D_1), H(D_2),\cdots , H(D_N) of data D1,D2,,DND_1, D_2,\cdots , D_N, your task is to help her rearrange the order to minimize the total collusion times. You may assume the length of the Hash Table is infinitive.

Input

The first line contains an integer NN (1N1061\leq N\leq 10^6).

The second line contains NN integers D1,D2,,DND_1, D_2, \cdots , D_N (1Di23111\leq D_i\leq 2^{31}-1).

Output

The minimum of total collusion times.

Samples

5
1 2 1 3 2
6

Note

Huge input. scanf recommended.

Resources

5th BUPT Programming Contest Preliminary