이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
int n, a, b;
vector <int> arr;
bool check(int ans){
vector<vector<int>> dp(n+1, vector<int>(a+1, 0));
for (int i = 1; i <= n; ++i){
int pa = i, pb = i;
do pa--; while(arr[i]-arr[pa] <= ans);
do pb--; while(arr[i]-arr[pb] <= 2*ans);
for (int j = 0; j < a+1; ++j){
if (i == 0) dp[i][j] = dp[pb][j]+1;
else dp[i][j] = min(dp[pb][j]+1, dp[pa][j-1]);
}
}
return dp[n][a] <= b;
}
int32_t main(){
cin >> n >> a >> b;
arr.resize(n+1);
for (int i = 1; i <= n; ++i) cin >> arr[i];
if (a+b >= n) return cout<<1, 0;
arr[0] = -1e9;
sort(arr.begin(), arr.end());
//for (auto e: arr) cout << e << " ";
int lf = 0, ri = 1e9;
while (lf <= ri){
int mid = (lf+ri)/2;
//cout << mid << " ";
if (check(mid)) ri = mid-1;
else lf = mid+1;
}
cout << lf+1;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |