#include <bits/stdc++.h>
using namespace std;
int a[2001];
int dp[2001][2001];
int pre1[2001],pre2[2001];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,p,q;
cin >> n >> p >> q;
for(int i=1;i<=n;i++){
cin >> a[i];
}
sort(a+1,a+n+1);
if(p+q>=n){
cout << 1;
return 0;
}
a[0]=-1000000000;
int l=1,r=1000000000;
while(l!=r){
int k=0,y=0;
for(int i=1;i<=p;i++){
dp[0][i]=0;
}
for(int i=1;i<=n;i++){
dp[i][0]=1e9;
while(a[i]-mid>a[k+1]) k++;
while(a[i]-2*mid>a[y+1]) y++;
pre1[i]=k;
pre2[i]=y;
}
int mid=l+r>>1;
for(int i=1;i<=n;i++){
for(int j=1;j<=p;j++){
int b=a[i]-mid+1;
int id=pre1[i];
b=a[i]-2*mid+1;
int id1=pre2[i];
dp[i][j]=min(dp[id][j-1],dp[id1][j]+1);
}
}
if(dp[n][p]>q){
l=mid+1;
}
else r=mid;
}
//cout << l << endl;
int mid=l,k=0,y=0;
for(int i=1;i<=p;i++){
dp[0][i]=0;
}
for(int i=1;i<=n;i++){
dp[i][0]=1e9;
while(a[i]-mid>a[k+1]) k++;
while(a[i]-2*mid>a[y+1]) y++;
pre1[i]=k;
pre2[i]=y;
}
for(int i=1;i<=n;i++){
for(int j=1;j<=p;j++){
int b=a[i]-mid+1;
int id=pre1[i];
b=a[i]-2*mid+1;
int id1=pre2[i];
dp[i][j]=min(dp[id][j-1],dp[id1][j]+1);
//cout << dp[i][j] << ' ' << i << ' ' << j << endl;
}
}
if(dp[n][p]>q){
l++;
}
cout << l;
}
Compilation message
watching.cpp: In function 'int main()':
watching.cpp:29:15: error: 'mid' was not declared in this scope
29 | while(a[i]-mid>a[k+1]) k++;
| ^~~
watching.cpp:30:17: error: 'mid' was not declared in this scope
30 | while(a[i]-2*mid>a[y+1]) y++;
| ^~~
watching.cpp:34:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
34 | int mid=l+r>>1;
| ~^~