# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
730869 | rainboy | XOR (IZhO12_xor) | C11 | 125 ms | 24272 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#define N 250000
#define L 30 /* L = ceil(log2(10^9)) */
#define N_ (N * L + 2)
int min(int a, int b) { return a < b ? a : b; }
int tt[N_][2], ii[N_], _ = 2;
int main() {
static int aa[N + 1];
int n, x, i, j, i_, j_, l, a, c, t, u;
scanf("%d%d", &n, &x);
for (i = 1; i <= n; i++)
scanf("%d", &aa[i]), aa[i] ^= aa[i - 1];
i_ = j_ = -1;
for (j = 0; j <= n; j++) {
i = j;
a = aa[j];
for (l = L - 1, t = 1; l >= 0; l--) {
c = a >> l & 1;
if ((x & 1 << l) == 0) {
if ((u = tt[t][c ^ 1]))
i = min(i, ii[u]);
t = tt[t][c];
} else
t = tt[t][c ^ 1];
}
if (t)
i = min(i, ii[t]);
for (l = L - 1, t = 1; l >= 0; l--) {
c = a >> l & 1;
if (!tt[t][c])
ii[tt[t][c] = _++] = j;
t = tt[t][c];
}
if (i < j && j_ - i_ < j - i)
i_ = i, j_ = j;
}
printf("%d %d\n", i_ + 1, j_ - i_);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |