Soldier and Badges

题意翻译

给 n 个数,每次操作可以将一个数 +1,要使这 n 个数都不相同, 求最少要加多少? 1<= n <=3000 感谢@凉凉 提供的翻译

题目描述

Colonel has $ n $ badges. He wants to give one badge to every of his $ n $ soldiers. Each badge has a coolness factor, which shows how much it's owner reached. Coolness factor can be increased by one for the cost of one coin. For every pair of soldiers one of them should get a badge with strictly higher factor than the second one. Exact values of their factors aren't important, they just need to have distinct factors. Colonel knows, which soldier is supposed to get which badge initially, but there is a problem. Some of badges may have the same factor of coolness. Help him and calculate how much money has to be paid for making all badges have different factors of coolness.

输入输出格式

输入格式


First line of input consists of one integer $ n $ ( $ 1<=n<=3000 $ ). Next line consists of $ n $ integers $ a_{i} $ ( $ 1<=a_{i}<=n $ ), which stand for coolness factor of each badge.

输出格式


Output single integer — minimum amount of coins the colonel has to pay.

输入输出样例

输入样例 #1

4
1 3 1 4

输出样例 #1

1

输入样例 #2

5
1 2 3 2 5

输出样例 #2

2

说明

In first sample test we can increase factor of first badge by $ 1 $ . In second sample test we can increase factors of the second and the third badge by $ 1 $ .