码迷,mamicode.com
首页 > 其他好文 > 详细

CodeForces546B Soldier and Badges 解题报告

时间:2018-08-21 12:42:40      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:es5   报告   --   题解   namespace   turn   def   return   using   

最近忙。。。先上代码吧。。。有空继续写题解。。。

#include<cstdio>
#include<queue>
using namespace std;
#define MAXN 3005

int n, ans, t, s;
int nn;
int a[MAXN * 2];

int main(){
    scanf( "%d", &n );
    for ( int i = 1; i <= n; ++i ) scanf( "%d", &t ), a[t]++, s += t, nn = max( nn, t );
    t = 0;
    for ( int i = 1; i <= 6000; ++i ){
        if ( t == 0 && i > nn ) break;
        if ( t > 0 && a[i] == 0 ) t--, ans += i;
        if ( a[i] > 1 ) t += a[i] - 1;
        if ( a[i] ) ans += i;
    }
    printf( "%d\n", ans - s );
    return 0;
}

 

CodeForces546B Soldier and Badges 解题报告

标签:es5   报告   --   题解   namespace   turn   def   return   using   

原文地址:https://www.cnblogs.com/louhancheng/p/9510624.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!