您的位置:首页 > 其它

B. Soldier and Badges

2015-06-08 18:31 405 查看
time limit per test
3 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

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.

Input

First line of input consists of one integer n (1 ≤ n ≤ 3000).

Next line consists of n integers ai (1 ≤ ai ≤ n),
which stand for coolness factor of each badge.

Output

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

Sample test(s)

input
4
1 3 1 4


output
1


input
5
1 2 3 2 5


output
2


Note

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.

解题说明:此题其实只要求通过加1,在最小步骤的情况下确保数字不重复,可以先统计每个数出现的次数,然后根据次数判断哪些数需要往上加1.即a[i]>1的情况,最后确保只有N个a[i]中有值,即N个不同的数。

#include <stdio.h>

int main()
{
int n,a[6001]={0};
int count,sum,k,i;
scanf("%d",&n);
for(i=1;i<=n;i++)
{
scanf("%d",&k);
a[k]++;
}
sum=0;
count=0;
i=1;
while(sum!=n)
{
while(a[i]>1)
{
count++;
a[i]--;
a[i+1]++;
}
sum+=a[i];
i++;
}
printf("%d\n",count);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: