A. Fox and Box Accumulation
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 than xi boxes on the top of i-th box. What is the minimal number of piles she needs to construct?
Output a single integer — the minimal possible number of piles.
3 0 0 10
2
5 0 1 2 3 4
1
4 0 0 0 0
4
9 0 1 0 2 0 1 1 2 10
3
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).

题目链接:http://codeforces.com/problemset/problem/388/A
题目大意:n个盒子,每个盒子有一个数值,代表能放在这个盒子上的盒子个数不超过这个数。上面盒子的数值不能大于下面盒子的数值,求最少能放多少堆盒子。
解题思路:如果从下往上选大盒子累积,累积完一组后剩余的都是较小的盒子,累积的不高,累积组数可能会大于最佳情况,所以应该从上往下先选小盒子。
代码如下:
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int a[105];
int vis[105];
int main(void)
{
int n;
memset(vis,0,sizeof(vis));
scanf("%d",&n);
for(int i=0;i<n;i++)
scanf("%d",&a[i]);
sort(a,a+n);
int cnt=1,ans=0,s;
bool p=true;
while(p)
{
p=false;
cnt=1;
s=n;
for(int i=0;i<n;i++)
{
if(!vis[i])
{
vis[i]=1;
p=true;
s=i;
break;
}
}
for(int i=s+1;i<n;i++)
{
if(a[i]>=cnt && !vis[i])
{
cnt++;
vis[i]=1;
p=true;
}
}
if(p)
ans++;
}
printf("%d\n",ans );
}