#include<bits/stdc++.h>
using namespace std;
int n,m,a[100005],l,r,mid,ans;
inline bool check(int x)
{
int tot=0,num=0;
for(int i=1;i<=n;i++)
{
if(tot+a[i]<=x)tot+=a[i];
else tot=a[i],num++;
}
return num>=m;
}
int main()
{
cin>>n>>m;
for(int i=1;i<=n;i++)cin>>a[i],l=max(l,a[i]),r+=a[i]; while(l<=r) { mid=l+r>>1; if(check(mid))l=mid+1; else r=mid-1; } cout<<l; return 0; }
0.0分
18 人评分
【蟠桃记】 (C语言代码)浏览:711 |
数组输出 (C语言代码)错误???浏览:602 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:562 |
简单的a+b (C语言代码)浏览:878 |
小九九 (C语言描述,不看要求真坑爹)浏览:1006 |
分糖果 (C语言代码)浏览:980 |
C语言程序设计教程(第三版)课后习题1.6 (C语言代码)浏览:692 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:812 |
筛排处理 (C语言代码)浏览:830 |