This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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;
}
int l=1,r=1000000000;
while(l!=r){
int mid=l+r>>1;
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;
}
for(int i=1;i<=n;i++){
for(int j=1;j<=p;j++){
dp[i][0]=dp[pre2[i]][0]+1;
int id=pre1[i];
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++){
dp[i][0]=dp[pre2[i]][0]+1;
int id=pre1[i];
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 (stderr)
watching.cpp: In function 'int main()':
watching.cpp:22:12: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
22 | int mid=l+r>>1;
| ~^~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |