zoukankan      html  css  js  c++  java
  • Codeforces Round #228 (Div. 1) A

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

    二分pile的个数。
    #include <iostream>
    #include <stdio.h>
    #include <string>
    #include <string.h>
    #include <algorithm>
    #include <stdlib.h>
    #include <vector>
    #include <set>
    using namespace std;
    typedef long long LL ;
    
    int x[108] , n ;
    int pile[108][108] ;
    int judge(int Len){
        memset(pile,-1,sizeof(pile)) ;
        int row = n/Len  , k = 0 , i ,j;
        for(i = 1 ; i <= n/Len ; i++)
            for(j = 1 ; j <= Len ; j++)
                pile[i][j] = x[k++] ;
        if(n % Len){
           row++ ;
           j = 1 ;
           while(k < n)
              pile[row][j++] = x[k++] ;
        }
        for(i = 1 ; i <= Len ; i++){
            for(j = 1  ; j <= row ; j++){
                if(pile[j][i] != -1 &&pile[j][i] < j - 1)
                    return 0 ;
            }
        }
        return 1 ;
    }
    
    int b_s(){
        int L = 1 ,R = n ,mid ,ans;
        while(L <= R){
            mid = (L + R)>>1 ;
            if(judge(mid)){
                ans = mid ;
                R = mid -1 ;
            }
            else
                L = mid + 1 ;
        }
        return ans ;
    }
    
    int main(){
        int i ;
        cin>>n ;
        for(i = 0 ; i < n ; i++)
            cin>>x[i] ;
        sort(x , x + n) ;
        cout<<b_s()<<endl ;
        return 0 ;
    }
  • 相关阅读:
    简单的模板解析函数
    HTML通过事件传递参数到js 二 event
    HTML通过事件传递参数到js一
    通过this获取当前点击选项相关数据
    LeetCode 20. 有效的括号(Valid Parentheses)
    LeetCode 459. 重复的子字符串(Repeated Substring Pattern)
    LeetCode 14. 最长公共前缀(Longest Common Prefix)
    LeetCode 168. Excel表列名称(Excel Sheet Column Title)
    LeetCode 171. Excel表列序号(Excel Sheet Column Number) 22
    LeetCode 665. 非递减数列(Non-decreasing Array)
  • 原文地址:https://www.cnblogs.com/liyangtianmen/p/3551385.html
Copyright © 2011-2022 走看看