이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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<<r;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |