# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1112223 | Kirill22 | XOR (IZhO12_xor) | C++17 | 14 ms | 39868 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
int nxt[(int) 1e7][2], dp[(int) 1e7], cnt = 2;
void add(int v, int x, int j, int i) {
if (j == -1) {
dp[v] = min(dp[v], i);
} else {
if (x >> j & 1) {
if (!nxt[v][1]) nxt[v][1] = cnt++;
add(nxt[v][1], x, j - 1, i);
} else {
if (!nxt[v][0]) nxt[v][0] = cnt++;
add(nxt[v][0], x, j - 1, i);
}
dp[v] = min(dp[nxt[v][0]], dp[nxt[v][1]]);
}
}
int get(int v, int have, int need, int j) {
if (!v) {
return (int) 1e9;
}
if (j == -1) {
return dp[v];
}
int bit = (have >> j & 1) ^ (need >> j & 1);
int res = get(nxt[v][bit], have, need, j - 1);
if ((need >> j & 1) == 0) {
res = min(res, dp[nxt[v][1 - (have >> j & 1)]]);
}
return res;
}
void solve() {
int n, x;
cin >> n >> x;
pair<int, int> ans = {0, 0};
fill(dp, dp + (int) 1e7, n);
for (int i = 0, sum = 0; i < n; i++) {
int val;
cin >> val;
add(1, sum, 30, i);
sum ^= val;
int l = get(1, sum, x, 30);
if (l <= i && i - l + 1 >= ans.second) {
ans = {l, i - l + 1};
}
}
cout << ans.first + 1 << " " << ans.second << '\n';
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t = 1;
// cin >> t;
while (t--) {
solve();
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |