3342.Fox and Box Accumulation

Time Limit: 1s Memory Limit: 256MB

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. 3342_1.png 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 than xi boxes on the top of i-th box. What is the minimal number of piles she needs to construct?

Input Format(From the terminal/stdin)

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

Output Format(To the terminal/stdout)

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

Sample Input 1

Copy
3
0 0 10
 \n
 · ·  \n

Sample Output 1

Copy
2
 \n

Sample Input 2

Copy
5
0 1 2 3 4
 \n
 · · · · \n

Sample Output 2

Copy
1
 \n

Sample Input 3

Copy
4
0 0 0 0
 \n
 · · · \n

Sample Output 3

Copy
4
 \n

Sample Input 4

Copy
9
0 1 0 2 0 1 1 2 10
 \n
 · · · · · · · ·  \n

Sample Output 4

Copy
3
 \n

Hints

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. 3342_2.png In example 2, we can build only 1 pile that contains boxes 1, 2, 3, 4, 5 (from top to bottom). 3342_3.png

Submit

请先 登录

© 2025 FAQs