이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define pb push_back
#define mp make_pair
#define int long long
using namespace std;
const int mod = 1e9 + 7;
const int inf = 1e9;
const int N = 2e3 + 5;
int32_t main(){
cin.tie(0); cout.tie(0);
ios_base::sync_with_stdio(false);
int n, p, q;
cin>>n>>p>>q;
p = min(p, n);
q = min(q, n);
vector<int> a(n);
for(int i = 0; i < n; i++){
cin>>a[i];
}
sort(a.begin(), a.end());
if(p + q >= n){
cout<<1<<endl;
return 0;
}
vector<int> sm(N), bg(N);
vector<vector<int> > dp(p+1, vector<int>(q+1, 0));
int l = 1, r = inf + 5;
while(l < r){
int m = (l + r)/2;
for(int i = 0; i <= p; i++){
for(int j = 0; j <= q; j++){
dp[i][j] = 0;
}
}
int x = 0;
for(int i = 0; i < n; i++){
while(x < n && a[x] - a[i] + 1 <= m) x++;
sm[i] = x;
}
sm[n] = n;
x = 0;
for(int i = 0; i < n; i++){
while(x < n && a[x] - a[i] + 1 <= m * 2) x++;
bg[i] = x;
}
bg[n] = n;
for(int s = p + q - 1; s >= 0; s--){
for(int small = p; small >= 0; small--){
int big = s - small;
if(big < 0 || big > q) continue;
if(small < p) dp[small][big] = max(dp[small][big], sm[dp[small+1][big]]);
if(big < q) dp[small][big] = max(dp[small][big], bg[dp[small][big+1]]);
}
}
if(dp[0][0] == n) r = m;
else l = m + 1;
}
cout<<l<<endl;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |