zoukankan      html  css  js  c++  java
  • spoj11814

    EKO - Eko

    Lumberjack Mirko needs to chop down M metres of wood. It is an easy job for him since he has a nifty new woodcutting machine that can take down forests like wildfire. However, Mirko is only allowed to cut a single row of trees.

    Mirko‟s machine works as follows: Mirko sets a height parameter H (in metres), and the machine raises a giant sawblade to that height and cuts off all tree parts higher than H (of course, trees not higher than H meters remain intact). Mirko then takes the parts that were cut off. For example, if the tree row contains trees with heights of 20, 15, 10, and 17 metres, and Mirko raises his sawblade to 15 metres, the remaining tree heights after cutting will be 15, 15, 10, and 15 metres, respectively, while Mirko will take 5 metres off the first tree and 2 metres off the fourth tree (7 metres of wood in total).

    Mirko is ecologically minded, so he doesn‟t want to cut off more wood than necessary. That‟s why he wants to set his sawblade as high as possible. Help Mirko find the maximum integer height of the sawblade that still allows him to cut off at least M metres of wood.

    Input

    The first line of input contains two space-separated positive integers, N (the number of trees, 1 ≤ N ≤ 1 000 000) and M(Mirko‟s required wood amount, 1 ≤ M ≤ 2 000 000 000).

    The second line of input contains N space-separated positive integers less than 1 000 000 000, the heights of each tree (in metres). The sum of all heights will exceed M, thus Mirko will always be able to obtain the required amount of wood.

    Output

    The first and only line of output must contain the required height setting.

    Example

    Input:
    4 7
    20 15 10 17
    
    Output:
    15
    Input:
    5 20
    4 42 40 26 46
    
    Output:
    36
    #include <cstdio>
     
    using namespace std;
     
    int main() {
        long long int N, i, M;
        scanf( "%lld%lld", &N, &M );
        int array[ N ];
        long long int max = 0, h = 0; 
        long long int beg, end, mid;
        long long int cutted;
        for ( i = 0; i < N; ++i ) {
            scanf( "%d", array + i );
            if ( array[ i ] > max ) {
                max = array[ i ];
            }
        }
        beg = 0;
        end = max;
        while ( beg <= end ) {
            mid = ( beg + end ) / 2;
            cutted = 0;
            for ( i = 0; i < N; ++i ) {
                if ( array[ i ] - mid > 0 ) {
                    cutted += array[ i ] - mid;
                }
            }
            if ( cutted > M ) {
                beg = mid + 1;
                if ( mid > h ) {
                    h = mid;
                }
            }
            else if ( cutted < M ) {
                end = mid - 1;
            }
            else {
                h = mid;
                break;
            }
        }
        printf( "%lld
    ", h );
        return 0;
    } 
    

      

  • 相关阅读:
    IDEA使用 磨刀霍霍向代码
    如何设计一个高可用系统?要考虑哪些地方?
    spring boot 集成apollo 快速指南
    实战_Spring_Cloud
    Spring Boot 入门(十二):报表导出,对比poi、jxl和esayExcel的效率
    「newbee-mall新蜂商城开源啦」1000 Star Get !仓库Star数破千!记录一下
    一个C#开发者重温Java的心路历程
    BeanUtils 如何拷贝 List?
    JVM之JVM的体系结构
    python类中的私有方法
  • 原文地址:https://www.cnblogs.com/passion-sky/p/8997596.html
Copyright © 2011-2022 走看看