Codeforces Round #228 (Div. 2) C Fox and Box Accumulation(贪心)

来源:互联网 发布:淘宝发布宝贝图片变形 编辑:程序博客网 时间:2024/06/01 09:18

思路:从小到大放,能放就放,简单模拟就可以了


#include<bits/stdc++.h>using namespace std;const int maxn = 105;int vis[maxn];int n,maxv,ans;int main(){    int x;    scanf("%d",&n);    for(int i=0; i<n; i++)    {int tmp;        scanf("%d",&tmp);        vis[tmp]++;        maxv = max(maxv,tmp);    }    while(n)    {        x=0;        for(int i=0; i<=maxv; i++)        {            while(vis[i]&&i>=x)            {                x++;                vis[i]--;                n--;            }        }        ans++;    }    printf("%d\n",ans);}


C. Fox and Box Accumulation
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Fox Ciel has n boxes in her room. They have the same size and weight, but they might have different strength. The i-th box can hold at most xi boxes on its top (we'll call xi the strength of the box).

Since all the boxes have the same size, Ciel cannot put more than one box directly on the top of some box. For example, imagine Ciel has three boxes: the first has strength 2, the second has strength 1 and the third has strength 1. She cannot put the second and the third box simultaneously directly on the top of the first one. But she can put the second box directly on the top of the first one, and then the third box directly on the top of the second one. We will call such a construction of boxes a pile.

Fox Ciel wants to construct piles from all the boxes. Each pile will contain some boxes from top to bottom, and there cannot be more thanxi boxes on the top of i-th box. What is the minimal number of piles she needs to construct?

Input

The first line contains an integer n (1 ≤ n ≤ 100). The next line contains n integers x1, x2, ..., xn (0 ≤ xi ≤ 100).

Output

Output a single integer — the minimal possible number of piles.

Examples
input
30 0 10
output
2
input
50 1 2 3 4
output
1
input
40 0 0 0
output
4
input
90 1 0 2 0 1 1 2 10
output
3
Note

In example 1, one optimal way is to build 2 piles: the first pile contains boxes 1 and 3 (from top to bottom), the second pile contains only box 2.

In example 2, we can build only 1 pile that contains boxes 1, 2, 3, 4, 5 (from top to bottom).


0 0
原创粉丝点击