Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
110886 | 陈星云 | 花费 | C++ | 通过 | 100 | 0 MS | 252 KB | 462 | 2023-11-17 13:55:55 |
#include<bits/stdc++.h> using namespace std; int a[100010], n, m; bool chk(int k){ int now=0,tot=0; for(int i=1;i<=n;i ++){ if(now+a[i] > k) { tot++; now=0; } now += a[i]; } if(now > 0)tot++; return tot <= m; } int main() { int l = 0,r = 0; cin >> n >> m; for(int i=1;i<=n;i++) cin>>a[i], r += a[i], l = max(l, a[i]); while(l<r) { int mid=(l+r)/2; if(chk(mid)) r=mid; else l=mid + 1; } cout<<l<<endl; }