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;
    }
  • 相关阅读:
    tcprstat分析服务的响应速度
    mysqldump之不老将
    Java数据持久层框架 MyBatis之API学习二(入门)
    Java数据持久层框架 MyBatis之API学习一(简介)
    插入数据库日期格式转换
    eclipse出现错误:he type java.util.Map$Entry cannot be resolved. It is indirectly referenced
    注释中不允许出现字符串 "--"。
    mybatis if条件查询 及<号的问题
    This is probably because there is no OLE editor registered against the type of file you were trying to open.
    github not authorized eclipse
  • 原文地址:https://www.cnblogs.com/jhz033/p/6223445.html
Copyright © 2011-2022 走看看