time limit per test2 seconds

memory limit per test256 megabytes

inputstandard input

outputstandard output

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.

【题目链接】:http://codeforces.com/contest/551/problem/C

【题解】



二分最后的时间ma

其实相当于每个人都有时间ma;

看看每个人在时间ma里能做什么事。

看看最后能不能把所有的箱子都移掉就好.

维护第一个非空的位置.最后的时间复杂度就接近O(n*logn)了。



【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x) typedef pair<int,int> pii;
typedef pair<LL,LL> pll; const int MAXN = 1e5+100;
const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0); int n,m;
int a[MAXN],b[MAXN]; bool ok(LL ma)
{
rep1(i,1,n)
a[i] = b[i];
int now = 1;
while (now<=n && a[now]==0) now++;
for (int i = 1;i<=m && now <= n;i++)
{
LL temp = ma;
if (temp < now) return false;
temp-=now;
while (temp>0 && now<=n)
{
if (temp >= a[now])
{
temp-=a[now];
a[now]=0;
}
else
{
a[now]-=temp;
temp = 0;
}
while (now <= n && a[now]==0)
{
now++;
temp--;
}
}
}
return now==n+1;
} int main()
{
//freopen("F:\\rush.txt","r",stdin);
rei(n);rei(m);
rep1(i,1,n)
rei(b[i]);
LL l = 0,r = 1e18,ans = -1;
while (l <= r)
{
LL mid = (l+r)>>1;
if (ok(mid))
{
ans = mid;
r = mid-1;
}
else
l = mid+1;
}
cout << ans << endl;
return 0;
}

最新文章

  1. iOS之17个提升iOS开发效率的必用工具
  2. Selenium2+python自动化17-JS处理滚动条
  3. [游戏模版11] Win32 动画 时间消息
  4. 使用pt-heartbeat检测主从复制延迟
  5. 区域生长算法(附MATLAB代码实现)
  6. 01-03-02-2【Nhibernate (版本3.3.1.4000) 出入江湖】CRUP操作-Save方法的一些问题
  7. 利用mysql中的SQL_CALC_FOUND_ROWS 来实现group by后的记录数统计
  8. BlockingQueue队列学习
  9. &lt;poj - 2139&gt; Six Degrees of Cowvin Bacon 最短路径问题 the cow have been making movies
  10. Lucene5.5.4入门以及基于Lucene实现博客搜索功能
  11. hexo摸爬滚打之进阶教程
  12. Go基础之--数组和切片
  13. Can&#39;t update: no tracked branch No tracked branch configured for branch dev.
  14. 模板引擎Jade详解
  15. Django使用forms来实现评论功能
  16. 【原创】运维基础之Docker(3)搭建私有仓库
  17. 使用 AudioContext 播放音频 解决 谷歌禁止自动播放音频
  18. Mysql数据库表被锁定处理
  19. canal 结合 kafka 入门
  20. 使用exundelete在Linux下恢复删除的文件

热门文章

  1. UVA 11346 Probability (几何概型, 积分)
  2. codecombat之边远地区的森林12-22关及地牢39关代码分享
  3. The program yum-complete-transaction is found in the yum-utils package
  4. 使用wget工具抓取网页和图片 及 相关工具几个
  5. js配合My97datepicker给日期添加天数
  6. 提高IIS的FTP安全性 管理员的九阴真经
  7. Large Division (大数求余)
  8. C#如何调用非托管的C++Dll
  9. IDFA和IMEI
  10. pycharm快捷键、经常使用设置、配置管理