zoukankan      html  css  js  c++  java
  • 第一次比赛的 C题 (好后面才补的....) CodeForces 546B

    Description

    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 Input

    Input
    4 
    1 3 1 4
    Output
    1
    Input
    5 
    1 2 3 2 5
    Output
    2

    Hint

    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.

    题意:给一串数字,使得他们每个都不一样,需要增加几....

    题解;先输入的时候算出和,然后排序,接下来循环,如果后一个等于前一个,a[i]++,如果前一个大于后一个,a[i]加上前一个减去后一个的再加上1,这样,他就不会个前面的相等.....

    最后把他们的和算出来,求两个和的差就是答案...

    代码如下:

     1 #include <stdio.h>
     2 #include <algorithm>
     3 #include <string.h>
     4 using namespace std;
     5 int a[3005];
     6 int main()
     7 {
     8     int n;
     9     while(scanf("%d",&n)==1)
    10     {
    11         int sum1=0,sum2=0;
    12         for(int i=1;i<=n;i++)
    13         {
    14             scanf("%d",&a[i]);
    15             sum1+=a[i];
    16         }
    17         sort(a+1,a+n+1);
    18         sum2=a[1];
    19         for(int i=2;i<=n;i++)
    20         {
    21             if(a[i]==a[i-1])
    22                 a[i]++;
    23             else if(a[i]<a[i-1])
    24                 a[i]+=a[i-1]-a[i]+1;
    25             sum2+=a[i];
    26         }
    27         printf("%d
    ",sum2-sum1);
    28     }
    29     return 0;
    30 }
  • 相关阅读:
    Ceph的参数mon_osd_down_out_subtree_limit细解
    java:警告:[unchecked] 对作为普通类型 java.util.HashMap 的成员的put(K,V) 的调用未经检查
    Java 原始类型JComboBox的成员JComboBox(E())的调用 未经过检查
    Android draw Rect 坐标图示
    不用快捷键就能使用Eclipse的自动完成功能
    Java 窗体居中 通用代码
    Java文件复制删除操作合集
    Java Toolkit类用法
    DEVEXPRESS 破解方法
    如何使用Java执行cmd命令
  • 原文地址:https://www.cnblogs.com/huangguodong/p/4746263.html
Copyright © 2011-2022 走看看