zoukankan      html  css  js  c++  java
  • Codeforces Round #389 (Div. 2, Rated, Based on Technocup 2017

    E. Santa Claus and Tangerines
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Santa Claus has n tangerines, and the i-th of them consists of exactly ai slices. Santa Claus came to a school which has k pupils. Santa decided to treat them with tangerines.

    However, there can be too few tangerines to present at least one tangerine to each pupil. So Santa decided to divide tangerines into parts so that no one will be offended. In order to do this, he can divide a tangerine or any existing part into two smaller equal parts. If the number of slices in the part he wants to split is odd, then one of the resulting parts will have one slice more than the other. It's forbidden to divide a part consisting of only one slice.

    Santa Claus wants to present to everyone either a whole tangerine or exactly one part of it (that also means that everyone must get a positive number of slices). One or several tangerines or their parts may stay with Santa.

    Let bi be the number of slices the i-th pupil has in the end. Let Santa's joy be the minimum among all bi's.

    Your task is to find the maximum possible joy Santa can have after he treats everyone with tangerines (or their parts).

    Input

    The first line contains two positive integers n and k (1 ≤ n ≤ 106, 1 ≤ k ≤ 2·109) denoting the number of tangerines and the number of pupils, respectively.

    The second line consists of n positive integers a1, a2, ..., an (1 ≤ ai ≤ 107), where ai stands for the number of slices the i-th tangerine consists of.

    Output

    If there's no way to present a tangerine or a part of tangerine to everyone, print -1. Otherwise, print the maximum possible joy that Santa can have.

    Examples
    input
    3 2
    5 9 3
    output
    5
    input
    2 4
    12 14
    output
    6
    input
    2 3
    1 1
    output
    -1
    Note

    In the first example Santa should divide the second tangerine into two parts with 5 and 4 slices. After that he can present the part with 5slices to the first pupil and the whole first tangerine (with 5 slices, too) to the second pupil.

    In the second example Santa should divide both tangerines, so that he'll be able to present two parts with 6 slices and two parts with 7slices.

    In the third example Santa Claus can't present 2 slices to 3 pupils in such a way that everyone will have anything.

    思路:二分+dp;复杂度(1e7*log(1e7));

    #include<bits/stdc++.h>
    using namespace std;
    #define ll long long
    #define pi (4*atan(1.0))
    #define eps 1e-14
    const int N=1e6+10,M=1e7+10,inf=1e9+10;
    const ll INF=1e18+10,mod=2147493647;
    int a[N],n;
    ll k;
    ll dp[M];
    int main()
    {
        scanf("%d%lld",&n,&k);
        for(int i=1; i<=n; i++)
            scanf("%d",&a[i]);
        int st=1;
        int en=1e7;
        int ans=-1;
        while(st<=en)
        {
            int mid=(st+en)>>1;
            //cout<<mid<<endl;
            ll sum=0;
            for(int i=0; i<mid; i++)
                dp[i]=0;
            for(int i=mid; i<=10000000; i++)
            {
                dp[i]=1;
                dp[i]=max(dp[i],dp[i/2]+dp[i-i/2]);
            }
            for(int i=1; i<=n; i++)
                sum+=dp[a[i]];
            if(sum>=k)
            {
                ans=mid;
                st=mid+1;
            }
            else
                en=mid-1;
        }
        printf("%d
    ",ans);
        return 0;
    }
  • 相关阅读:
    并发之CAS无锁技术
    dubbo-admin打包和zookper安装
    读书笔记<深入理解JVM>01 关于OutOfMemoryError 堆空间的溢出
    关于mybatis和spring复合pom的异常
    ElasticSearch入门一
    Niginx +Tomcat 集群搭建
    使用自定义线程池优化EchoServer
    使用线程池优化Echo模型
    获取请求主机IP地址,如果通过代理进来,则透过防火墙获取真实IP地址
    java中double和float精度丢失问题
  • 原文地址:https://www.cnblogs.com/jhz033/p/6223445.html
Copyright © 2011-2022 走看看