#include <bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define fs first
#define sc second
const int mxn = 1e5+10;
struct node{
vector<int> v;
int pl,pr;
};
struct SEG{
#define mid ((l+r)>>1)
#define ls seg[now].pl
#define rs seg[now].pr
node seg[mxn*100];
int ppp = 0;
SEG(){}
int newnode(){
return ++ppp;
}
int modify(int now,int l,int r,int s,int e,int v){
if(!now)now = newnode();
if(l>=s&&e>=r){
seg[now].v.push_back(v);
return now;
}
if(mid>=s)ls = modify(ls,l,mid,s,e,v);
if(mid<e)rs = modify(rs,mid+1,r,s,e,v);
return now;
}
vector<int> getval(int now,int l,int r,int p){
if(!now)return vector<int>();
if(l == r)return seg[now].v;
vector<int> re;
if(mid>=p)re = getval(ls,l,mid,p);
else re = getval(rs,mid+1,r,p);
for(auto &j:seg[now].v)re.push_back(j);
return re;
}
#undef ls
#undef rs
#undef mid
};
SEG seg;
int arr[mxn],N,D;
int rt[mxn];
void init(int NN, int DD, int H[]) {
N = NN,D = DD;
for(int i = 0;i<N;i++){
arr[i] = H[i];
}
return;
}
void curseChanges(int U, int A[], int B[]) {
map<pii,int> mp;
for(int i = 0;i<U;i++){
pii p = {A[i],B[i]};
if(p.fs>p.sc)swap(p.fs,p.sc);
if(mp.find(p) != mp.end()){
rt[p.fs] = seg.modify(rt[p.fs],0,mxn-1,mp[p]+1,i,arr[p.sc]);
rt[p.sc] = seg.modify(rt[p.sc],0,mxn-1,mp[p]+1,i,arr[p.fs]);
mp.erase(p);
}
else{
mp[p] = i;
}
}
for(auto &i:mp){
rt[i.fs.fs] = seg.modify(rt[i.fs.fs],0,mxn-1,i.sc+1,mxn-1,arr[i.fs.sc]);
rt[i.fs.sc] = seg.modify(rt[i.fs.sc],0,mxn-1,i.sc+1,mxn-1,arr[i.fs.fs]);
}
return;
}
int question(int x, int y, int v) {
auto ta = seg.getval(rt[x],0,mxn-1,v);
auto tb = seg.getval(rt[y],0,mxn-1,v);
sort(ta.begin(),ta.end());
sort(tb.begin(),tb.end());
int pt = 0;
int ans = 1e9;
for(auto &i:ta){
while(pt != tb.size()&&tb[pt]<i)pt++;
if(pt != tb.size())ans = min(ans,abs(i-tb[pt]));
if(pt-1>=0)ans = min(ans,abs(i-tb[pt-1]));
}
return ans;
}
Compilation message
potion.cpp: In function 'int question(int, int, int)':
potion.cpp:90:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
90 | while(pt != tb.size()&&tb[pt]<i)pt++;
| ~~~^~~~~~~~~~~~
potion.cpp:91:9: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
91 | if(pt != tb.size())ans = min(ans,abs(i-tb[pt]));
| ~~~^~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
106 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
70 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
66 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
55 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
56 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
106 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |