# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
16886 | erdemkiraz | XOR (IZhO12_xor) | C++98 | 511 ms | 86780 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
# include <bits/stdc++.h>
using namespace std;
#define type(x) __typeof((x).begin())
#define foreach(it, x) for(type(x) it = (x).begin(); it != (x).end(); it++)
typedef long long ll;
typedef pair < int, int > ii;
const int inf = 1e9 + 333;
const ll linf = 1e18 + inf;
const int N = 250000 + 5;
const int LOG = 31;
int n, k;
int a[N];
class trie{ public:
int id;
trie *c[2], *dad;
trie() {
id = inf;
c[0] = c[1] = 0;
}
};
typedef trie* pTrie;
pTrie root;
int add(int x, int id) {
pTrie p = root;
int num = 0, ans = inf;
if(p -> c[0] or p -> c[1]) {
for(int i = LOG - 1; i >= 0; i--) {
bool w = x & (1 << i);
if(p -> c[!w]) {
num |= 1 << i;
if(num >= k) {
ans = min(ans, p -> c[!w] -> id);
if(p -> c[w])
p = p -> c[w];
else
break;
}
else {
p = p -> c[!w];
}
}
else {
p = p -> c[w];
}
}
}
p = root;
for(int i = LOG - 1; i >= 0; i--) {
bool w = x & (1 << i);
if(!p -> c[w]) {
p -> c[w] = new trie;
p -> c[w] -> dad = p;
}
p = p -> c[w];
}
p -> id = id;
while(p != root) {
if(p -> c[0])
p -> id = min(p -> id, p -> c[0] -> id);
if(p -> c[1])
p -> id = min(p -> id, p -> c[1] -> id);
p = p -> dad;
}
return ans;
}
int main() {
root = new trie;
scanf("%d %d", &n, &k);
int res = 0;
add(0, 1);
int ansl = inf, ansr = 0;
for(int i = 1; i <= n; i++) {
scanf("%d", a + i);
res ^= a[i];
int l = add(res, i + 1);
//printf("l = %d i = %d\n", l, i);
if(i - l > ansr - ansl) {
ansl = l;
ansr = i;
}
}
printf("%d %d\n", ansl, ansr - ansl + 1);
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |