This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
 
typedef int ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
 
using namespace std;
vector<unordered_set<ll>> edges[101];
vector<ll> h;
vector<ll> a;
vector<ll> b;
void init(int N, int D, int H[]) {
    FOR(i,0,N) h.push_back(H[i]);
}
void curseChanges(int U, int A[], int B[]) {
    vector<unordered_set<ll>> tempedges(10001);
    FOR(i,0,U){
        
        a.push_back(A[i]);
        b.push_back(B[i]);
        if (tempedges[A[i]].count(B[i])) tempedges[A[i]].erase(B[i]);
        else tempedges[A[i]].insert(B[i]);
        if (tempedges[B[i]].count(A[i])) tempedges[B[i]].erase(A[i]);
        else tempedges[B[i]].insert(A[i]);
        if (i%100==0) edges[i/100] = tempedges;
        
    }
}
int mindiff(vector<ll>&a, vector<ll>&b){
    ll ans = 1000000000;
    vector<vector<ll>> A,B;
    for (auto&i : a) A.push_back({h[i], i});
    for (auto&i : b) B.push_back({h[i], i});
    sort(A.begin(), A.end());
    sort(B.begin(), B.end());
    ll l=0,r=0;
    while (l<A.size() && r<B.size()){
        ans = min(ans, abs(A[l][0] - B[r][0]));
        if (A[l][0] < B[r][0]) l++;
        else r++;
    }
    return ans;
}
int question(int x, int y, int v) {
    v--;
    unordered_set<ll> X;
    unordered_set<ll> Y;
    for (auto&i : edges[v/100][x]) X.insert(i);
    for (auto&i : edges[v/100][y]) Y.insert(i);
    FOR(i,(v/100)*100+1, v+1){
 
        if (a[i] == x){
            if (X.count(b[i])) X.erase(b[i]);
            else X.insert(b[i]);
        } 
        if (a[i] == y){
            if (Y.count(b[i])) Y.erase(b[i]);
            else Y.insert(b[i]);
        }
        if (b[i] == x){
            if (X.count(a[i])) X.erase(a[i]);
            else X.insert(a[i]);
        }
        if (b[i] == y){
            if (Y.count(a[i])) Y.erase(a[i]);
            else Y.insert(a[i]);
        }
    }
    
    
    vector<ll> XX,YY;
    for (auto&i : X) XX.push_back(i);
    for (auto&i : Y) YY.push_back(i);
    return mindiff(XX,YY);
}
Compilation message (stderr)
potion.cpp: In function 'int mindiff(std::vector<int>&, std::vector<int>&)':
potion.cpp:45:13: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |     while (l<A.size() && r<B.size()){
      |            ~^~~~~~~~~
potion.cpp:45:27: warning: comparison of integer expressions of different signedness: 'll' {aka 'int'} and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   45 |     while (l<A.size() && r<B.size()){
      |                          ~^~~~~~~~~| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |