比赛 20170919普及组 评测结果 AAAAAAAAAA
题目名称 划分数列 最终得分 100
用户昵称 zhoutb 运行时间 0.070 s
代码语言 C++ 内存使用 1.05 MiB
提交时间 2017-09-19 20:10:50
显示代码纯文本
  1. #include<cstdio>
  2. #include<cstring>
  3. #include<algorithm>
  4. #define maxn 100010
  5. using namespace std;
  6. long long sum[maxn];
  7. int main(){
  8. freopen("seqa.in","r",stdin);
  9. freopen("seqa.out","w",stdout);
  10. long long n,k,x,l,r,mid,temp,cnt,ll,rr,midd,maxx=0,summ=0;
  11. scanf("%lld%lld",&n,&k);
  12. for(int i=1;i<=n;i++){
  13. scanf("%lld",&sum[i]);
  14. maxx=max(maxx,sum[i]);
  15. summ+=sum[i];
  16. }
  17. l=maxx,r=summ;
  18. while(l<r){
  19. mid=(l+r)/2;
  20. temp=0;
  21. cnt=1;
  22. for(int i=1;i<=n;i++){
  23. if(temp+sum[i]>mid){
  24. cnt++;
  25. temp=sum[i];
  26. }
  27. else
  28. temp+=sum[i];
  29. }
  30. if(cnt>k)
  31. l=mid+1;
  32. else
  33. r=mid;
  34. }
  35. printf("%lld",l);
  36. return 0;
  37. }