# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
883486 | NintsiChkhaidze | XOR (IZhO12_xor) | C++17 | 6 ms | 1628 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define s second
#define f first
#define left (h<<1),l,(l + r)/2
#define right ((h<<1)|1),(l + r)/2 + 1,r
#define pii pair<int,int>
#define ll long long
// #define int ll
using namespace std;
const int N = 25000 + 5;
int a[N],p[N],tot = 1,child[N * 33][4],val[N * 33];
void upd(int k,int i){
int cur = 1;
for (int j = 30; j >= 0; j--){
int b = (k & (1<<j)) > 0;
if (!child[cur][b]){
child[cur][b] = ++tot;
}
cur = child[cur][b];
val[cur] = max(val[cur],i);
}
}
int find(int i,int mask,int lim){
// ... == mask ^ p[i - 1]
mask ^= p[i - 1];
int cur = 1;
for (int j = 30; j >= lim; j--){
int b = (mask & (1<<j)) > 0;
if (!child[cur][b]) return -1;
cur = child[cur][b];
}
return val[cur] - i + 1;
}
signed main (){
ios_base::sync_with_stdio(0),cin.tie(NULL),cout.tie(NULL);
// freopen("game.in", "r", stdin);
// freopen("game.out", "w", stdout);
int n,x;
cin>>n>>x;
for (int i = 1; i <= n; i++){
cin >> a[i];
p[i] = p[i - 1] ^ a[i];
}
int ans1 = 0,ans2 = 0;
for (int i = n; i >= 1; i--){
upd(p[i],i);
int res = find(i,x,0);
if (res > ans2) ans1 = i,ans2 = res;
int mask = 0;
for (int j = 30; j >= 0; j--){
if (!(x & (1<<j))){
int res = find(i,(mask ^ (1<<j)),j);
if (res > ans2) ans1=i,ans2=res;
}
mask ^= (x & (1<<j));
}
}
cout<<ans1<<" "<<ans2;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |