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

繁华模拟赛 ljw搭积木

时间:2016-09-24 23:23:40      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

技术分享


#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = 6005;
int n,x[maxn];
int cmd,cnt,ans,max_x;
int main(){
    freopen("box.in","r",stdin);
    freopen("box.out","w",stdout);
    ios::sync_with_stdio(false);
    cin>>n;
    for(int i = 1;i <= n;i++){
        cin>>cmd;
        x[cmd]++;
        max_x = max(max_x,cmd);
    }
    while(1){
        cnt = 0;
        for(int i = 0;i <= max_x;i++){
            while(x[i] && i >= cnt){
                x[i]--;
                cnt++;
            }
        }
        if(!cnt) break;
        ans += 1;
    }
    cout<<ans;
    return 0;
}

 

繁华模拟赛 ljw搭积木

标签:

原文地址:http://www.cnblogs.com/hyfer/p/5904418.html

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