记录编号 |
314867 |
评测结果 |
AAAAAAAAAA |
题目名称 |
书的复制 |
最终得分 |
100 |
用户昵称 |
Go灬Fire |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.013 s |
提交时间 |
2016-10-04 13:46:29 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#include<iostream>
#include<cstdlib>
#define Begin freopen("books.in","r",stdin);freopen("books.out","w",stdout);
#define End fclose(stdin);fclose(stdout);
#define LL long long
using namespace std;
const int maxn=511;
int a[maxn],n,m;
struct Node{
int l,r;
}peo[maxn];
void Init();
bool Judge(LL Time){//如果合法,返回1,否则返回0
LL tot=0;
int zhi=1;bool f=0;
for(int i=1;i<=m;i++){
while(tot+a[zhi]<=Time){
tot+=a[zhi];zhi++;
if(zhi==n+1){f=1;break;}
}
tot=0;
if(f==1)return 1;
}
return 0;
}
int main(){
Begin;
Init();
//system("pause");
End;
return 0;
}
void Init(){
scanf("%d%d",&n,&m);
LL r=0;
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);r+=a[i];
}
LL l=1;
while(l<=r){//二分时间 ,该mid时间完不成,则l~mid均完不成
LL mid=(l+r)>>1;
if(Judge(mid))r=mid-1;
else l=mid+1;
}
int zhi=n;LL tot=0;bool f=0;
//printf("%d \n",l);
for(int i=m;i>=1;i--){
peo[i].r=zhi;
while(tot+a[zhi]<=l){
tot+=a[zhi];zhi--;
if(zhi==0){f=1;break;}
}
tot=0;
peo[i].l=zhi+1;
if(f==1)break;
}
if(peo[1].l!=0){
for(int i=1;i<=m;i++)printf("%d %d\n",peo[i].l,peo[i].r);
}
else {
for(int i=1;i<=m;i++){
if(peo[i].l==0){
zhi=i;
peo[i].l=i;peo[i].r=i;
printf("%d %d\n",peo[i].l,peo[i].r);
}
else break;
}
for(int i=zhi+1;i<=m;i++){
if(i==zhi+1)peo[i].l==zhi+1;
printf("%d %d\n",peo[i].l,peo[i].r);
}
}
}