CF GukiZ hates Boxes

Professor GukiZ is concerned about making his way to school, because massive piles of boxes are blocking his way.

In total there are n piles of boxes, arranged in a line, from left to right, i-th pile (1 ≤ i ≤ n) containing ai boxes. Luckily, m students are willing to help GukiZ by removing all the boxes from his way. Students are working simultaneously. At time 0, all students are located left of the first pile. It takes one second for every student to move from this position to the first pile, and after that, every student must start performing sequence of two possible operations, each taking one second to complete. Possible operations are:

If i ≠ n, move from pile i to pile i + 1;
If pile located at the position of student is not empty, remove one box from it.
GukiZ’s students aren’t smart at all, so they need you to tell them how to remove boxes before professor comes (he is very impatient man, and doesn’t want to wait). They ask you to calculate minumum time t in seconds for which they can remove all the boxes from GukiZ’s way. Note that students can be positioned in any manner after t seconds, but all the boxes must be removed.

Input
The first line contains two integers n and m (1 ≤ n, m ≤ 105), the number of piles of boxes and the number of GukiZ’s students.

The second line contains n integers a1, a2, … an (0 ≤ ai ≤ 109) where ai represents the number of boxes on i-th pile. It’s guaranteed that at least one pile of is non-empty.

Output
In a single line, print one number, minimum time needed to remove all the boxes in seconds.

Examples
Input
2 1
1 1
Output
4
Input
3 2
1 0 2
Output
5
Input
4 100
3 4 5 4
Output
5
Note
First sample: Student will first move to the first pile (1 second), then remove box from first pile (1 second), then move to the second pile (1 second) and finally remove the box from second pile (1 second).

Second sample: One of optimal solutions is to send one student to remove a box from the first pile and a box from the third pile, and send another student to remove a box from the third pile. Overall, 5 seconds.

Third sample: With a lot of available students, send three of them to remove boxes from the first pile, four of them to remove boxes from the second pile, five of them to remove boxes from the third pile, and four of them to remove boxes from the fourth pile. Process will be over in 5 seconds, when removing the boxes from the last pile is finished.
【题意】:有n个空地(1~n),空地上有a[i]块石头,m个学生,每个学生在0这个位置,有两个操作均需要消耗1秒
操作1:将当前所在位置的石头删除一个
操作2:往右走一个位置,
问删除所有空地上的石头需要花费的最少时间
【分析】:二分枚举答案,贪心判断是否满足 即可!第一个学生走到当前位置需要花费的时间为路上石头的总数加上距离,如果当前值超过枚举的时间,则需要添加另外一个学生,当前添加的学生能帮走当前位置的石头个数为 X-i 个,同时学生的数目减一, (一定要记住所有的学生都是一起行走,这样才能保证最小的时间!),
用while循环判断!

代码:
#include<bits/stdc++.h>
const double eps = 1e-8;
#define ll long long

using namespace std;
ll a[100050];
int n,m;
ll ans=0,sum;
ll st,ed;
int check(ll x){
    int cnt=m;
    ll sum=0;
    for(int i=1;i<=st;i++)
    {
        sum+=a[i];
        while(sum+i>=x){   //不能继续往下走的情况
            sum-=x-i;
            cnt--;
            if(cnt<0){
                return 0;
            }
        }
    }
    if(cnt==0){
        if(sum<0){
            return 1;
        }else return 0;
    }
    return 1;
}

void solve(ll L,ll R){
    ll mid;
    while(L<=R){
        mid=(L+R)/2;
        if(check(mid))
        {
            ans=mid;
            R=mid-1;
        }
        else L=mid+1;

        cout<<"L="<<L<<"R="<<R<<endl;
    }

    cout<<ans<<endl;

}

int main(){
    while(~scanf("%d%d",&n,&m)){
        for(int i=1;i<=n;i++){
            scanf("%lld",&a[i]);
            if(a[i]) st=i;
            sum+=a[i];
        }
        ed=st+sum;
        ll L=st,R=ed;
        cout<<L<<"    "<<R<<endl;
        solve(L,R);
    }
}
/*
4 100
3 4 5 4
4    20
L=13R=20
L=17R=20
L=19R=20
L=20R=20
L=21R=20
*/

猜你喜欢

转载自blog.csdn.net/wrf20162305/article/details/81381006