이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define ff first
#define ss second
#define pii pair<int, int>
#define sz(v) (int)(v).size()
#define all(v) (v).begin(), (v).end()
int main() {
ios::sync_with_stdio(false); cin.tie(nullptr);
int n, p, q;
cin >> n >> p >> q;
vector<int> a(n + 1, INT_MIN);
for (int i = 1; i <= n; i++)
cin >> a[i];
sort(1 + all(a));
int l = 0, r = (int)1e9;
while (l <= r) {
int md = (l + r) >> 1;
vector<pii> dp[n + 1];
dp[0] = {{0, 0}};
for (int i = 1; i <= n; i++) {
vector<pii> v;
for (auto j : dp[upper_bound(all(a), a[i] - md) - a.begin() - 1])
if (j.ff < p) v.push_back({j.ff + 1, j.ss});
for (auto j : dp[upper_bound(all(a), a[i] - (md << 1)) - a.begin() - 1])
if (j.ss < q) v.push_back({j.ff, j.ss + 1});
if (v.empty()) continue;
sort(v.begin(), v.end());
dp[i] = {v[0]};
for (int j = 1; j < sz(v); j++)
if (dp[i].back().ss > v[j].ss) dp[i].push_back(v[j]);
}
if (dp[n].empty()) l = md + 1;
else r = md - 1;
}
cout << l;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |