题意:现在有N个立方体盒子,你现在可以把这些盒子套起来(一个盒子的尺寸严格小于另一个盒子),问最少能看到多少个盒子?
思路:模拟。排个序依次往没用过的最大的盒子里面放就行。
#include<bits/stdc++.h>
using namespace std;
const int MAXN = 5e3 + 5;
int n, a[MAXN];
bool vis[MAXN];
int main()
{
while(~scanf("%d",&n))
{
memset(vis,0,sizeof(vis));
for(int i = 0; i < n; i++) scanf("%d",&a[i]);
sort(a, a + n);
int ans = 0;
for(int i = n - 1; i >= 0; i--)
{
if(vis[i] == true) continue;
ans++;
int now = a[i];
for(int j = i - 1; j >= 0; j--)
{
if(vis[j] == true) continue;
if(a[j] < now)
{
now = a[j]; vis[j] = true;
}
}
}
printf("%d\n",ans);
}
return 0;
}