#include<bits/stdc++.h>
using namespace std;
const long long mod=998244353;
long long n,a,b,sum,c[2003],dp[2050][2050];
long long f(int x,int y,long long z)
{
if(y>a)return 1e6;
if(x==n)return 0;
if(dp[x][y]!=-1)return dp[x][y];
long long mx=1e6;
for(int i=x;i<n;i++)
{
if(c[i]-c[x]+1>z*2)break;
if(c[i]-c[x]+1<=z)mx=min(mx,f(i+1,y+1,z));
else mx=min(mx,f(i+1,y,z)+1);
}
return dp[x][y]=mx;
}
bool ck(long long x)
{
memset(dp,-1,sizeof dp);
if(f(0,0,x)<=b)return 1;
else return 0;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
cin>>n>>a>>b;
for(int i=0;i<n;i++)cin>>c[i];
long long l=1,r=1e9+1,mid;
sort(c,c+n);
while(l<r)
{
mid=(l+r)/2;
if(ck(mid))r=mid;
else l=mid+1;
}
cout<<l;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
134 ms |
33272 KB |
Output is correct |
2 |
Correct |
134 ms |
33272 KB |
Output is correct |
3 |
Correct |
140 ms |
33272 KB |
Output is correct |
4 |
Correct |
137 ms |
33272 KB |
Output is correct |
5 |
Incorrect |
155 ms |
33276 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
593 ms |
33288 KB |
Output is correct |
2 |
Incorrect |
169 ms |
33272 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |