# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
274728 | bicsi | 구경하기 (JOI13_watching) | C++14 | 197 ms | 15276 KiB |
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 main() {
int n, p, q; cin >> n >> p >> q;
if (p + q >= n) {
cout << 1 << endl;
return 0;
}
vector<int> a(n);
for (int i = 0; i < n; ++i)
cin >> a[i];
sort(a.begin(), a.end());
auto ok = [&](int w) -> bool {
int ps = 0, pl = 0;
vector<vector<int>> dp(n + 1, vector<int>(p + 1, n + 1));
fill(dp[0].begin(), dp[0].end(), 0);
for (int i = 0; i < n; ++i) {
while (a[ps] <= a[i] - w) ++ps;
while (a[pl] <= a[i] - 2 * w) ++pl;
for (int j = 0; j <= p; ++j) {
if (j > 0) dp[i + 1][j] = min(dp[i + 1][j], dp[ps][j - 1]);
dp[i + 1][j] = min(dp[i + 1][j], dp[pl][j] + 1);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |