이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1 << 11;
int n, P, Q, a[N], dp[N][N];
signed main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n >> P >> Q;
for (int i = 1; i <= n; ++i) cin >> a[i];
if (n <= P) return cout << 1, 0;
sort(a + 1, a + n + 1);
int l = 0, r = a[n];
while (r - l > 1) {
int w = l + (r - l + 1) / 2;
for (int i = 1, j = 0, k = 0; i <= n; ++i) {
while (w <= a[i] - a[j + 1]) ++j;
while (2 * w <= a[i] - a[k + 1]) ++k;
dp[i][0] = 1 + dp[k][0];
for (int p = 1; p <= P; ++p) dp[i][p] = min(dp[j][p - 1], 1 + dp[k][p]);
}
(dp[n][P] <= Q ? r : l) = w;
}
cout << r;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |