/**
* author: wxhtzdy
* created: 01.07.2022 22:14:54
**/
#include <bits/stdc++.h>
using namespace std;
string to_string(string s) {
return '"' + s + '"';
}
string to_string(const char* s) {
return to_string((string) s);
}
string to_string(bool b) {
return (b ? "true" : "false");
}
template <typename A, typename B>
string to_string(pair<A, B> p) {
return "(" + to_string(p.first) + ", " + to_string(p.second) + ")";
}
template <typename A>
string to_string(A v) {
bool first = true;
string res = "{";
for (const auto &x : v) {
if (!first) {
res += ", ";
}
first = false;
res += to_string(x);
}
res += "}";
return res;
}
void debug_out() { cerr << endl; }
template <typename Head, typename... Tail>
void debug_out(Head H, Tail... T) {
cerr << " " << to_string(H);
debug_out(T...);
}
#ifdef LOCAL
#define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__)
#else
#define debug(...) 42
#endif
const int MAX = 200005;
const int MAGIC = 30;
int a[MAX], p[MAX], q[MAX];
vector<int> qs[MAX];
vector<set<int>> my[MAX];
void init(int n, int d, int h[]) {
for (int i = 0; i < n; i++) {
a[i] = h[i];
}
}
void curseChanges(int u, int a[], int b[]) {
for (int i = 0; i < u; i++) {
qs[a[i]].push_back(i);
qs[b[i]].push_back(i);
p[i] = a[i];
q[i] = b[i];
}
for (int i = 0; i < MAX; i++) {
if (qs[i].empty()) {
continue;
}
set<int> st;
for (int j = 0; j < (int) qs[i].size(); j++) {
int he = (i ^ p[qs[i][j]] ^ q[qs[i][j]]);
if (st.find(he) != st.end()) {
st.erase(st.find(he));
} else {
st.insert(he);
}
if (j % MAGIC == 0) {
my[i].push_back(st);
}
}
}
}
int question(int x, int y, int v) {
--v;
vector<int> xs;
vector<int> ys;
{
int i = lower_bound(qs[x].begin(), qs[x].end(), v + 1) - qs[x].begin();
--i;
if (i >= 0) {
set<int> st = my[x][i / MAGIC];
for (int j = (i / MAGIC) * MAGIC + 1; j <= i; j++) {
int he = (x ^ p[qs[x][j]] ^ q[qs[x][j]]);
if (st.find(he) != st.end()) {
st.erase(st.find(he));
} else {
st.insert(he);
}
}
for (int j : st) {
xs.push_back(a[j]);
}
}
sort(xs.begin(), xs.end());
}
{
int i = lower_bound(qs[y].begin(), qs[y].end(), v + 1) - qs[y].begin();
--i;
if (i >= 0) {
set<int> st = my[y][i / MAGIC];
for (int j = (i / MAGIC) * MAGIC + 1; j <= i; j++) {
int he = (y ^ p[qs[y][j]] ^ q[qs[y][j]]);
if (st.find(he) != st.end()) {
st.erase(st.find(he));
} else {
st.insert(he);
}
}
for (int j : st) {
ys.push_back(a[j]);
}
}
sort(ys.begin(), ys.end());
}
assert((int) xs.size() <= 500);
assert((int) ys.size() <= 500);
int ptr = 0;
int ans = 1e9;
for (int i = 0; i < (int) xs.size(); i++) {
while (ptr + 1 < (int) ys.size() && xs[i] > ys[ptr]) {
ptr += 1;
}
if (ptr < (int) ys.size()) {
ans = min(ans, abs(xs[i] - ys[ptr]));
}
if (ptr > 0) {
ans = min(ans, abs(xs[i] - ys[ptr - 1]));
}
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
9616 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
9808 KB |
Output is correct |
2 |
Correct |
7 ms |
9808 KB |
Output is correct |
3 |
Correct |
7 ms |
9808 KB |
Output is correct |
4 |
Correct |
24 ms |
10732 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
222 ms |
28500 KB |
Output is correct |
2 |
Correct |
222 ms |
28460 KB |
Output is correct |
3 |
Correct |
298 ms |
22216 KB |
Output is correct |
4 |
Correct |
2230 ms |
94380 KB |
Output is correct |
5 |
Correct |
658 ms |
30536 KB |
Output is correct |
6 |
Execution timed out |
3034 ms |
139472 KB |
Time limit exceeded |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
193 ms |
28480 KB |
Output is correct |
2 |
Correct |
2449 ms |
146120 KB |
Output is correct |
3 |
Correct |
1511 ms |
83076 KB |
Output is correct |
4 |
Execution timed out |
3014 ms |
138728 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
52 ms |
11188 KB |
Output is correct |
2 |
Correct |
188 ms |
10384 KB |
Output is correct |
3 |
Correct |
298 ms |
10380 KB |
Output is correct |
4 |
Correct |
1286 ms |
13008 KB |
Output is correct |
5 |
Correct |
1362 ms |
12596 KB |
Output is correct |
6 |
Correct |
221 ms |
10084 KB |
Output is correct |
7 |
Correct |
1058 ms |
11980 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
9616 KB |
Output is correct |
2 |
Correct |
7 ms |
9808 KB |
Output is correct |
3 |
Correct |
7 ms |
9808 KB |
Output is correct |
4 |
Correct |
7 ms |
9808 KB |
Output is correct |
5 |
Correct |
24 ms |
10732 KB |
Output is correct |
6 |
Correct |
222 ms |
28500 KB |
Output is correct |
7 |
Correct |
222 ms |
28460 KB |
Output is correct |
8 |
Correct |
298 ms |
22216 KB |
Output is correct |
9 |
Correct |
2230 ms |
94380 KB |
Output is correct |
10 |
Correct |
658 ms |
30536 KB |
Output is correct |
11 |
Execution timed out |
3034 ms |
139472 KB |
Time limit exceeded |
12 |
Halted |
0 ms |
0 KB |
- |