博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces 388A Fox and Box Accumulation (模拟)
阅读量:7087 次
发布时间:2019-06-28

本文共 2433 字,大约阅读时间需要 8 分钟。

A. Fox and Box Accumulation
time limit per test:1 second
memory limit per test:256 megabytes

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?

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.

Sample test(s)
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).

题目链接:
题目大意:一些盒子,数字代表其上面最多还能放多少,且上面放的数字不能大于其以下的。问最少堆几堆
题目分析:暴力模拟。从上往下一堆一堆的取,具体见程序凝视
#include 
#include
#include
using namespace std;int a[105], hash[105];int main(){ int n, ma = -1; memset(hash, 0, sizeof(hash)); scanf("%d", &n); for(int i = 0; i < n; i++) { scanf("%d", &a[i]); ma = max(a[i], ma); hash[a[i]]++; } int ans = 0; while(n) { int cnt = 0; //第i堆的个数 for(int i = 0; i <= ma; i++) { //有当前重量的,且其压力大于等于上面的个数 //则将其放到以下 while(hash[i] && i >= cnt) { hash[i] --; //放了一个,数量减1 cnt++; //这一堆数量加1 n --; //记录总的剩余个数 } } ans ++; //记录堆数 } printf("%d\n", ans);}

转载地址:http://kcgml.baihongyu.com/

你可能感兴趣的文章
Accessing a File (Linux Kernel)
查看>>
测试内存字节对齐代码
查看>>
计算机编程语言选择的困惑
查看>>
JavaScript事件
查看>>
Spring中BeanFactory的两大步骤
查看>>
elipse 插件初了解---扩展的加载过程
查看>>
JAVA帮助文档全系列 JDK1.5 JDK1.6 JDK1.7 官方中英完整版下载
查看>>
split-brain 脑裂问题(Keepalived)
查看>>
Mule ESB中entry-point-resolver的使用(2) Callable Entry Point Resolver
查看>>
mysql (master/slave)复制原理及配置
查看>>
关于ARM字节对齐的问题
查看>>
linux 3 步升级 wordpress
查看>>
PHP面试题集
查看>>
HashMap和Hashtable的区别
查看>>
g++编译过程和动态链接库
查看>>
centos下安装python3
查看>>
28份精美简历
查看>>
windows下整合nginx与php
查看>>
让消费者觉得占了便宜
查看>>
改变ListView快速滑块的图像
查看>>