#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<typename T>
using uset = unordered_set<T>;
const int maxN = 100000, maxU = 200000, INF = 1000000000;
int a[maxU], b[maxU], h[maxN], n, u, d;
vector<uset<int>> g[maxN];
uset<int> temp[maxN];
vector<int> ti[maxN];
vector<pair<int, int>> c[maxN];
void init(int N, int D, int H[]) {
n = N, d = D;
memcpy(h, H, sizeof(h[0]) * n);
}
void curseChanges(int U, int A[], int B[]) {
u = U;
memcpy(a, A, sizeof(a[0]) * u), memcpy(b, B, sizeof(b[0]) * u);
set<pair<int, int>> adj;
for (int i = 0; i < u; ++i) {
if (a[i] > b[i]) {
swap(a[i], b[i]);
}
if (adj.count({a[i], b[i]})) {
adj.erase({a[i], b[i]});
c[a[i]].emplace_back(~b[i], i + 1);
c[b[i]].emplace_back(~a[i], i + 1);
temp[a[i]].erase(b[i]);
temp[b[i]].erase(a[i]);
} else {
adj.insert({a[i], b[i]});
c[a[i]].emplace_back(b[i], i + 1);
c[b[i]].emplace_back(a[i], i + 1);
temp[a[i]].insert(b[i]);
temp[b[i]].insert(a[i]);
}
if (c[a[i]].size() % (2 * d) == 0) {
g[a[i]].push_back(temp[a[i]]);
ti[a[i]].push_back(i + 1);
}
if (c[a[i]].size() % (2 * d) == 0) {
g[b[i]].push_back(temp[b[i]]);
ti[b[i]].push_back(i + 1);
}
}
}
vector<int> get(int x, int v) {
int it = upper_bound(ti[x].begin(), ti[x].end(), v) - ti[x].begin() - 1, t = 0;
uset<int> ans;
if (it > -1) {
ans = g[x][it];
t = ti[x][it] + 1;
}
it = lower_bound(c[x].begin(), c[x].end(), make_pair(-1, t), [](pair<int, int> a, pair<int, int> b) {
return a.second < b.second;
}) - c[x].begin();
for (; it < int(c[x].size()) && c[x][it].second <= v; ++it) {
auto [y, tt] = c[x][it];
if (y < 0) {
ans.erase(~y);
} else {
ans.insert(y);
}
}
vector<int> answer;
for (int y: ans) {
answer.push_back(y);
}
return answer;
}
int question(int x, int y, int v) {
int ans = INF;
vector<int> f = get(x, v), s = get(y, v);
sort(s.begin(), s.end(), [](int i, int j) {
return h[i] == h[j] ? i < j : h[i] < h[j];
});
for (int to: f) {
auto it = lower_bound(s.begin(), s.end(), to, [](int i, int j) {
return h[i] == h[j] ? i < j : h[i] < h[j];
});
if (it != s.end()) {
ans = min(ans, h[*it] - h[to]);
}
if (it != s.begin()) {
ans = min(ans, h[to] - h[*prev(it)]);
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
12752 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
13048 KB |
Output is correct |
2 |
Correct |
8 ms |
13008 KB |
Output is correct |
3 |
Correct |
8 ms |
13024 KB |
Output is correct |
4 |
Correct |
24 ms |
13960 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
548 ms |
54944 KB |
Output is correct |
2 |
Correct |
573 ms |
54992 KB |
Output is correct |
3 |
Execution timed out |
3015 ms |
20632 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
671 ms |
54992 KB |
Output is correct |
2 |
Execution timed out |
3035 ms |
27644 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
61 ms |
15412 KB |
Output is correct |
2 |
Correct |
218 ms |
13400 KB |
Output is correct |
3 |
Correct |
1530 ms |
13344 KB |
Output is correct |
4 |
Correct |
2788 ms |
14628 KB |
Output is correct |
5 |
Correct |
2406 ms |
15164 KB |
Output is correct |
6 |
Correct |
205 ms |
14544 KB |
Output is correct |
7 |
Execution timed out |
3075 ms |
13532 KB |
Time limit exceeded |
8 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
12752 KB |
Output is correct |
2 |
Correct |
12 ms |
13048 KB |
Output is correct |
3 |
Correct |
8 ms |
13008 KB |
Output is correct |
4 |
Correct |
8 ms |
13024 KB |
Output is correct |
5 |
Correct |
24 ms |
13960 KB |
Output is correct |
6 |
Correct |
548 ms |
54944 KB |
Output is correct |
7 |
Correct |
573 ms |
54992 KB |
Output is correct |
8 |
Execution timed out |
3015 ms |
20632 KB |
Time limit exceeded |
9 |
Halted |
0 ms |
0 KB |
- |