# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
342061 | dimashii | XOR (IZhO12_xor) | C++17 | 201 ms | 24428 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fastio ios :: sync_with_stdio(0), cin.tie(0), cout.tie(0);
#define ll long long
using namespace std;
const int mxN = 3e5 + 45, mod = 1e9 + 7, mxB = 29;
const ll inf = 2e18 + 43;
mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
int n, x, a[mxN], sz = 1, dp[mxN * 30];
struct trie {
int nxt[2] = {0, 0};
} t[mxN * 30];
void add(int val, int i, int v = 1, int depth = 0) {
if (depth > mxB) {
if (!dp[v]) dp[v] = i;
return;
}
if ((val >> (mxB - depth)) & 1) {
if (!t[v].nxt[1]) t[v].nxt[1] = ++sz;
add(val, i, t[v].nxt[1], depth + 1);
}else {
if (!t[v].nxt[0]) t[v].nxt[0] = ++sz;
add(val, i, t[v].nxt[0], depth + 1);
}
dp[v] = min(dp[t[v].nxt[0]], dp[t[v].nxt[1]]);
}
int get(int val, int k, int v = 1, int depth = 0) {
if (depth > mxB) return (!dp[v] ? mod : dp[v]);
int ans = n + 1;
if (!((k >> (mxB - depth)) & 1)) {
if ((val >> (mxB - depth)) & 1) {
ans = min(ans, dp[t[v].nxt[0]]);
if (t[v].nxt[1]) {
int new_val = (val ^ (1 << (mxB - depth)));
ans = min(ans, get(new_val, k, t[v].nxt[1], depth + 1));
}
}
else {
ans = min(ans, dp[t[v].nxt[1]]);
if (t[v].nxt[0]) ans = min(ans, get(val, k, t[v].nxt[0], depth + 1));
}
}else {
int new_k = (k ^ (1 << (mxB - depth)));
if ((val >> (mxB - depth)) & 1) {
if (t[v].nxt[0]) {
int new_val = (val ^ (1 << (mxB - depth)));
ans = min(ans, get(new_val, new_k, t[v].nxt[0], depth + 1));
}
}
else {
if (t[v].nxt[1]) ans = min(ans, get(val, new_k, t[v].nxt[1], depth + 1));
}
}
return ans;
}
int main() {
//freopen("c.in", "r", stdin);
//freopen("c.out", "w", stdout);
fastio;
cin >> n >> x;
for (int i = 1; i <= n; ++i) cin >> a[i], a[i] ^= a[i - 1];
dp[0] = n + 1;
add(0, 0);
int k, mx = 0;
for (int i = 1; i <= n; ++i) {
int j = get(a[i], x);
if (mx < i - j) {
mx = i - j;
k = j + 1;
}
add(a[i], i);
}
cout << k << ' ' << mx;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |