#include<iostream>
#include<set>
#include<vector>
#include<unordered_set>
using namespace std;
typedef long long ll;
const int C=2;
// time travelling multiset
class TTMS{
vector<int>days;
vector<pair<int,int>>changes;
vector<multiset<int>>checkpoints;
multiset<int>curr_set;
int curr_day=0;
void add_day(){
days.push_back(curr_day);
if(checkpoints.size()*C<days.size())
checkpoints.push_back(curr_set);
}
public:
TTMS(){
checkpoints={};
}
void add_new_day(int day){
curr_day=day;
}
void insert(int el){
add_day();
curr_set.insert(el);
changes.push_back({el,1});
}
void remove(int el){
add_day();
curr_set.erase(curr_set.find(el));
changes.push_back({el,-1});
}
vector<int> get(int day){
multiset<int>s;
int l=0,r=(int)days.size();
while(l!=r-1){
int m=(l+r)/2;
if(days[m]<=day)
l=m;
else
r=m;
}
int idx=l;
if(idx/C>=(int)checkpoints.size())
s=curr_set;
else
s=checkpoints[idx/C];
for(int i=idx/C*C;i<(int)changes.size();i++){
if(days[i]>day)
break;
if(changes[i].second==1)
s.insert(changes[i].first);
else if(changes[i].second==-1)
s.erase(s.find(changes[i].first));
}
return{s.begin(),s.end()};
}
};
int get_closest(vector<int>a,vector<int>b){
int res=1e9;
int i=0,j=0;
while(i<(int)a.size()&&j<(int)b.size()){
res=min(res,abs(a[i]-b[j]));
if(i<(int)a.size()&&a[i]<=b[j])
i++;
else if(j<(int)b.size()&&b[j]<=a[i])
j++;
}
return res;
}
int n;
int heights[100000];
TTMS ttms[100000];
void init(int N, int D, int H[]) {
n=N;
for(int i=0;i<n;i++)
heights[i]=H[i];
}
ll to(int a,int b){
if(a<b)
swap(a,b);
return a+((ll)b<<32);
}
void curseChanges(int U, int A[], int B[]) {
unordered_set<ll>conns;
for(int day=0;day<U;day++){
int a=A[day],b=B[day];
ll conn=to(a,b);
ttms[a].add_new_day(day+1);
ttms[b].add_new_day(day+1);
if(conns.find(conn)==conns.end()){
conns.insert(conn);
ttms[a].insert(heights[b]);
ttms[b].insert(heights[a]);
}else{
conns.erase(conn);
ttms[a].remove(heights[b]);
ttms[b].remove(heights[a]);
}
}
}
int question(int x, int y, int v) {
vector<int>a=ttms[x].get(v);
vector<int>b=ttms[y].get(v);
return get_closest(a,b);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
12752 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
18 ms |
26448 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
393 ms |
165784 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
410 ms |
165956 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
41 ms |
32400 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
12752 KB |
Output is correct |
2 |
Runtime error |
18 ms |
26448 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |