CF551C.GukiZ hates Boxes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

In total there are nn piles of boxes, arranged in a line, from left to right, ii -th pile ( 1<=i<=n1<=i<=n ) containing aia_{i} boxes. Luckily, mm students are willing to help GukiZ by removing all the boxes from his way. Students are working simultaneously. At time 00 , 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:

  1. If ini≠n , move from pile ii to pile i+1i+1 ;
  2. 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 tt in seconds for which they can remove all the boxes from GukiZ's way. Note that students can be positioned in any manner after tt seconds, but all the boxes must be removed.

输入格式

The first line contains two integers nn and mm ( 1<=n,m<=1051<=n,m<=10^{5} ), the number of piles of boxes and the number of GukiZ's students.

The second line contains nn integers a1,a2,... ana_{1},a_{2},...\ a_{n} ( 0<=ai<=1090<=a_{i}<=10^{9} ) where aia_{i} represents the number of boxes on ii -th pile. It's guaranteed that at least one pile of is non-empty.

输出格式

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

输入输出样例

  • 输入#1

    2 1
    1 1
    

    输出#1

    4
    
  • 输入#2

    3 2
    1 0 2
    

    输出#2

    5
    
  • 输入#3

    4 100
    3 4 5 4
    

    输出#3

    5
    

说明/提示

First sample: Student will first move to the first pile ( 11 second), then remove box from first pile ( 11 second), then move to the second pile ( 11 second) and finally remove the box from second pile ( 11 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, 55 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 55 seconds, when removing the boxes from the last pile is finished.

首页