#pragma GCC optimize("Ofast")
#include"bits/stdc++.h"
#define int long long
using namespace std;
const int sz = 2e3 + 6;
const int inf = 1e18;
vector<vector<int>> aj[sz];
int nw[sz], nww[sz];
int n, p, q;
int a[sz];
bool f;
void dfs(int v, int cl, int cr, map<vector<int>,bool>&vi) {
vi[{v,cl,cr}]=true;
if (cl > p || cr > q) return;
if (v == n + 1) {
f |= (cl <= p && cr <= q);
} else {
for (auto& u : aj[v]) {
if(vi[{u[0],cl+u[1],cr+u[2]}]) continue;
if(u[1] <= nw[v] || u[2] <= nww[v]) {
dfs(u[0], cl + u[1], cr + u[2], vi);
}
if (f) return;
if (u[1] <= nw[v] && u[2] <= nww[v]) {
nw[v] = u[1], nww[v] = u[2];
}
}
}
}
bool che(int mi) {
map<vector<int>,bool>vi;
for (int i = 1; i <= n; i ++) {
aj[i].clear();
int d = lower_bound(a + 1, a + n + 1, a[i] + mi) - &a[i];
int c = lower_bound(a + 1, a + n + 1, a[i] + 2 * mi) - &a[i];
aj[i].push_back({i + d, 1, 0});
aj[i].push_back({i + c, 0, 1});
nw[i] = nww[i] = inf;
}
f = false;
dfs(1, 0, 0, vi);
return f;
}
signed main() {
cin.tie(nullptr)->sync_with_stdio(false);
cin >> n >> p >> q;
for (int i = 1; i <= n; i ++) {
cin >> a[i];
}
sort(a + 1, a + n + 1);
a[n + 1] = inf;
int le, ri;
le = (a[n] - a[1]) / (p + q) / 4, ri = (a[n] - a[1]) / (p + q) + 10;
while (1 < ri - le) {
int mi = le + (ri - le) / 2;
if (che(mi)) {
ri = mi;
} else {
le = mi;
}
}
cout << ri << '\n';
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
4 ms |
604 KB |
Output is correct |
2 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |