#include<bits/stdc++.h>
#define NN 100100
using namespace std;
int h[NN], n;
set<int> adj[NN];
void init(int N, int D, int H[]) {
n = N;
for(int i = 0; i < N; i++)
h[i] = H[i];
}
void curseChanges(int U, int A[], int B[]) {
for(int i = 1; i <= U; i++) {
int a= A[i-1], b = B[i-1];
if(adj[a].count(b)) adj[a].erase(b), adj[b].erase(a);
else adj[a].insert(b), adj[b].insert(a);
}
for(int i = 0; i < n; i++) {
vector<int> b;
for(auto j: adj[i]) b.push_back(h[j]);
adj[i].clear();
for(auto j: b) adj[i].insert(j);
}
}
int calc(vector<int> a, vector<int> b){
int ans = 1e9;
for(int i = 0, j = 0; i < (int)a.size()&&j < (int)b.size();i++) {
if(a[i]>b[j]) swap(a, b), swap(i, j);
if(j) ans=min(ans,(int)abs(a[i]-b[j-1]));
ans = min(ans, abs(a[i] - b[j]));
}
return ans;
}
int question(int x, int y, int v) {
vector<int> c, d;
for(auto i: adj[x]) c.push_back(i);
for(auto i: adj[y]) d.push_back(i);
return calc(c,d);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
4944 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
5072 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
256 ms |
26056 KB |
Output is correct |
2 |
Correct |
289 ms |
26116 KB |
Output is correct |
3 |
Correct |
119 ms |
7416 KB |
Output is correct |
4 |
Correct |
1002 ms |
15948 KB |
Output is correct |
5 |
Correct |
523 ms |
25280 KB |
Output is correct |
6 |
Correct |
1192 ms |
12608 KB |
Output is correct |
7 |
Correct |
282 ms |
12780 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
186 ms |
26112 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
6096 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
4944 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |