zoukankan      html  css  js  c++  java
  • #228(div2)C. Fox and Box Accumulation

    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 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.

    Examples
    input
    3
    0 0 10
    output
    2
    input
    5
    0 1 2 3 4
    output
    1
    input
    4
    0 0 0 0
    output
    4
    input
    9
    0 1 0 2 0 1 1 2 10
    output
    3

    题意:给出每个相同盒子的强度(强度代表上面能累积几个盒子),问有几组
    思路:我们知道最正常的就是012345.....那么我们可以得到当前第一个大于=当前i的盒子,贪心
     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 
     4 int a[103];
     5 int sum=0;
     6 int n;
     7 
     8 void hh(){
     9     sort(a+1,a+1+n);
    10     for(int i=0;i<n;i++){
    11         int k=lower_bound(a+1,a+1+n,i)-a;
    12         if(k!=n+1){
    13             sum++;
    14             a[k]=-1;
    15         }
    16     }
    17 }
    18 
    19 int main(){
    20 
    21     scanf("%d",&n);
    22     for(int i=1;i<=n;i++){
    23         scanf("%d",&a[i]);
    24     }
    25     int s=0;
    26     sort(a+1,a+1+n);
    27     while(1){
    28         s++;
    29         hh();
    30         if(sum==n) break;
    31     }
    32     cout<<s<<endl;
    33 }
  • 相关阅读:
    使用蓝图构建Flask项目目录
    python上下文管理器细读
    【LiteOS】STM32F103-LiteOS移植教程(详细篇)
    OSX 下 sftp 上传目录到服务器
    Homestead window10 storage:link 不能建立符号链接的处理办法
    Laravel Carbon 简明使用
    VMWare 虚拟机挂载 Homestead NFS 进行老项目(基于 Brophp)维护
    winnfsd 操作
    windows10 查看进程端口的情况
    NFS各个版本之间的比较
  • 原文地址:https://www.cnblogs.com/hhxj/p/7099625.html
Copyright © 2011-2022 走看看