#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 , the Hash Function gives a Hash Key: , and the data will be stored in Hash Table . For two pieces of data and , if their Hash Keys are the same (), we say an COLLUSION
occurs. and 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 has been inserted into Hash Table , now if we need to insert into the Hash Table, since Hash Table has been occupied by , has to find the next position of : Hash Table . If Hash Table is also occupied, has to find the next position of : Hash Table ... Till finds an unoccupied position: Hash Table , 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 Hash Keys of data , 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 ().
The second line contains integers ().
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