#include<iostream>
#include<set>
#include<vector>
#include<unordered_set>
using namespace std;
typedef long long ll;
int u;
const int C=64;
// 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});
}
multiset<int>*get(int day){
multiset<int>*s=new multiset<int>;
if(day==u){
*s={curr_set.begin(),curr_set.end()};
return 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;
}
};
int get_closest(multiset<int>*a,multiset<int>*b){
int res=1e9;
auto i=a->begin();
auto j=b->begin();
while(i!=a->end()&&j!=b->end()){
res=min(res,abs(*i-*j));
if(i!=a->end()&&*i<=*j)
i++;
else if(j!=b->end()&&*j<=*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[]){
u=U;
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) {
auto*a=ttms[x].get(v);
auto*b=ttms[y].get(v);
return get_closest(a,b);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12752 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
13264 KB |
Output is correct |
2 |
Correct |
9 ms |
13264 KB |
Output is correct |
3 |
Correct |
7 ms |
13272 KB |
Output is correct |
4 |
Correct |
16 ms |
14040 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
428 ms |
76948 KB |
Output is correct |
2 |
Correct |
446 ms |
76996 KB |
Output is correct |
3 |
Correct |
161 ms |
71900 KB |
Output is correct |
4 |
Runtime error |
808 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
407 ms |
71132 KB |
Output is correct |
2 |
Runtime error |
337 ms |
262144 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
27388 KB |
Output is correct |
2 |
Correct |
158 ms |
52380 KB |
Output is correct |
3 |
Correct |
272 ms |
91064 KB |
Output is correct |
4 |
Runtime error |
358 ms |
262144 KB |
Execution killed with signal 9 |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
6 ms |
12752 KB |
Output is correct |
2 |
Correct |
7 ms |
13264 KB |
Output is correct |
3 |
Correct |
9 ms |
13264 KB |
Output is correct |
4 |
Correct |
7 ms |
13272 KB |
Output is correct |
5 |
Correct |
16 ms |
14040 KB |
Output is correct |
6 |
Correct |
428 ms |
76948 KB |
Output is correct |
7 |
Correct |
446 ms |
76996 KB |
Output is correct |
8 |
Correct |
161 ms |
71900 KB |
Output is correct |
9 |
Runtime error |
808 ms |
262144 KB |
Execution killed with signal 9 |
10 |
Halted |
0 ms |
0 KB |
- |