Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
110882 | 陈星云 | 花费 | C++ | 解答错误 | 80 | 0 MS | 256 KB | 449 | 2023-11-17 13:54:08 |
#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 r = 0; cin >> n >> m; for(int i=1;i<=n;i++) cin>>a[i], r += a[i]; int l=1; while(l<r) { int mid=(l+r)/2; if(chk(mid)) r=mid; else l=mid + 1; } cout<<l<<endl; }