# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1035975 | pera | XOR (IZhO12_xor) | C++17 | 64 ms | 83544 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 250000 + 1 , LOG = 3;
int n , x , T = 0;
map<int , int> POS;
vector<int> p(N);
vector<vector<int>> t(N * LOG , vector<int>(2)) , mx(N * LOG , vector<int>(2));
void UPD(int u , int e){
int v = 0;
for(int bit = LOG - 1;bit >= 0;bit --){
if(!t[v][u >> bit & 1]){
t[v][u >> bit & 1] = ++T;
mx[v][u >> bit & 1] = e;
}
v = t[v][u >> bit & 1];
}
}
int GET(int u){
int v = 0 , s = -1;
for(int bit = LOG - 1;bit >= 0;bit --){
int _u = u >> bit & 1;
int _x = v >> bit & 1;
if(_x){
v = t[v][_u ^ 1];
if(v == 0){
return s;
}
continue;
}
s = max(s , mx[v][_u ^ 1]);
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |