#include <bits/stdc++.h>
//#pragma GCC target("sse,sse2,sse4,avx2")
//#pragma GCC optimize("unroll-loops,O2")
#define rep(i,l,r) for (int i = l; i < r; i++)
#define repr(i,r,l) for (int i = r; i >= l; i--)
#define X first
#define Y second
#define all(x) (x).begin() , (x).end()
#define pb push_back
#define endl '\n'
#define debug(x) cerr << #x << " : " << x << endl;
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pll;
constexpr int N = 2e5+10,mod = 1e9+7,inf = 1e9+10,sq = 200;
inline int mkay(int a,int b){
if (a+b >= mod) return a+b-mod;
if (a+b < 0) return a+b+mod;
return a+b;
}
inline int poww(int a,int k){
if (k < 0) return 0;
int z = 1;
while (k){
if (k&1) z = 1ll*z*a%mod;
a = 1ll*a*a%mod;
k >>= 1;
}
return z;
}
int n,d,h[N],a[N],b[N],u;
vector<set<int> > st[N];
set<int> st1,st2;
vector<int> ti[N];
vector<pair<int,bool> > ve;
void init(int N, int D, int H[]) {
n = N;
d = D;
rep(i,0,n) h[i] = H[i];
}
void curseChanges(int U, int A[], int B[]) {
u = U;
rep(i,0,n){
st[i].resize(1);
ti[i].pb(0);
}
rep(i,0,U){
a[i+1] = A[i];
b[i+1] = B[i];
if ((i+1)%sq == 0){
int l = i-sq+1;
rep(k,l,i+1){
if (ti[A[k]].back() != i+1){
ti[A[k]].pb(i+1);
st[A[k]].pb(st[A[k]].back());
}
if (ti[B[k]].back() != i+1){
ti[B[k]].pb(i+1);
st[B[k]].pb(st[B[k]].back());
}
int sz1 = st[A[k]].size(),sz2 = st[B[k]].size();;
if (st[A[k]][sz1-1].find(B[k]) != st[A[k]][sz1-1].end()){
st[A[k]][sz1-1].erase(B[k]);
st[B[k]][sz2-1].erase(A[k]);
}
else{
st[A[k]][sz1-1].insert(B[k]);
st[B[k]][sz2-1].insert(A[k]);
}
}
}
}
}
int question(int x, int y, int v) {
if (!v) return 1000000000;
int dd = 0;
if (v >= sq){
int j = v/sq;
dd = j*sq;
int ind = lower_bound(all(ti[x]),dd)-ti[x].begin();
st1 = st[x][ind];
ind = lower_bound(all(ti[y]),dd)-ti[y].begin();
st2 = st[y][ind];
}
else{
st1.clear();
st2.clear();
}
rep(i,dd+1,v+1){
if (a[i] == x){
if (st1.find(b[i]) != st1.end())
st1.erase(b[i]);
else
st1.insert(b[i]);
}
if (a[i] == y){
if (st2.find(b[i]) != st2.end())
st2.erase(b[i]);
else
st2.insert(b[i]);
}
if (b[i] == x){
if (st1.find(a[i]) != st1.end())
st1.erase(a[i]);
else
st1.insert(a[i]);
}
if (b[i] == y){
if (st2.find(a[i]) != st2.end())
st2.erase(a[i]);
else
st2.insert(a[i]);
}
}
if (st1.empty() || st2.empty()) return 1000000000;
ve.clear();
for (int x : st1) ve.pb({h[x],0});
for (int x : st2) ve.pb({h[x],1});
sort(all(ve));
int sz = ve.size(),ans = 1000000000;
rep(i,1,sz){
while(i < sz && ve[i].Y == ve[i-1].Y) i++;
if (i == sz) break;
ans = min(ans,ve[i].X-ve[i-1].X);
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9680 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
10064 KB |
Incorrect |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
435 ms |
222028 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
425 ms |
222304 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
26 ms |
28488 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
9680 KB |
Output is correct |
2 |
Incorrect |
6 ms |
10064 KB |
Incorrect |
3 |
Halted |
0 ms |
0 KB |
- |