# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
81826 | mra2322001 | XOR (IZhO12_xor) | C++14 | 1089 ms | 32840 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define f0(i, n) for(int i(0); i < (n); i++)
#define f1(i, n) for(int i(1); i <= n; i++)
#define bit(x, y) (((x) >> (y))&(1ll))
using namespace std;
typedef long long ll;
const int N = 250002;
int n, a[N], f[N], xo;
unordered_map <int, int> g;
void init(int b){
g.clear();
f0(i, n + 1){
int x = f[i] >> b;
g[x] = i;
}
}
int main(){
ios_base::sync_with_stdio(0);
cin >> n >> xo;
f1(i, n) cin >> a[i], f[i] = f[i - 1]^a[i], g[f[i]] = i;
int res = 0, ans = 0;
f0(i, n + 1){
int cur = xo ^ f[i];
int x = g[cur] - i;
if(x > res) res = x, ans = i + 1;
}
for(int b = 29; b >= 0; b--){
if(bit(xo, b)) continue;
int now = (xo >> b);
now ++;
init(b);
f0(i, n + 1){
int x = f[i] >> b;
int cur = now ^ x;
int t = g[cur] - i;
if(t > res) res = t, ans = i + 1;
else if(t==res){
if(i + 1 < ans) ans = i + 1;
}
}
}
cout << ans << " " << res;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |