记录编号 |
423130 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2015]跳石头 |
最终得分 |
100 |
用户昵称 |
Emine |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.127 s |
提交时间 |
2017-07-11 10:25:38 |
内存使用 |
2.60 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<iostream>
#define LL long long
using namespace std;
const int maxn=100005;
LL r,n,m;
LL x[maxn],len[maxn],len_[maxn];
LL tot,l,mid;
bool check(int a){
tot=0;
for(int i=1;i<=n+1;i++) len_[i]=len[i];
for(int i=1;i<=n+1;i++){
if(len_[i]<a){
tot++;
len_[i+1]+=len_[i];
}
}
return tot<=m;
}
int main(){
freopen("2015stone.in","r",stdin);
freopen("2015stone.out","w",stdout);
cin>>r>>n>>m;
for(int i=1;i<=n;i++){
cin>>x[i];
len[i]=x[i]-x[i-1];
}
len[n+1]=r-x[n];
while(l+1<r){
mid=(l+r)/2;
if(check(mid))
l=mid;
else
r=mid;
}
if(check(r)) cout<<r;
else cout<<l;
return 0;
}