# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
691018 | danikoynov | XOR (IZhO12_xor) | C++14 | 197 ms | 109856 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
____ ____ ____ ____ ____ ____
||l |||e |||i |||n |||a |||d ||
||__|||__|||__|||__|||__|||__||
|/__\|/__\|/__\|/__\|/__\|/__\|
**/
#include<bits/stdc++.h>
#define endl '\n'
using namespace std;
typedef long long ll;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
const int maxn = 3e5 + 10;
struct trie
{
int child[2], mx;
trie()
{
child[0] = child[1] = -1;
mx = 1e9;
}
};
trie tree[30 * maxn];
int n, k, a[maxn], pref[maxn], last_used;
int max_len = 0, st_pos = 1;
void add(int root, int x, int depth, int idx)
{
tree[root].mx = min(tree[root].mx, idx);
if (depth < 0)
return;
int bit = (1 << depth), type = ((x & bit) > 0), &go = tree[root].child[type];
if (go == -1)
go = ++ last_used;
add(go, x, depth - 1, idx);
}
void query(int root, int x, int depth, int idx)
{
if (root == -1)
return;
if (depth < 0)
{
if (idx - tree[root].mx > max_len ||
(idx - tree[root].mx == max_len &&
tree[root].mx + 1 < st_pos))
{
max_len = idx - tree[root].mx;
st_pos = tree[root].mx + 1;
}
return;
}
int bit = (1 << depth), type = ((x & bit) > 0), ktype = ((k & bit) > 0);
if (ktype == 0)
{
int go = tree[root].child[(type + 1) % 2];
if (go != -1)
{
if (idx - tree[go].mx > max_len ||
(idx - tree[go].mx == max_len &&
tree[go].mx + 1 < st_pos))
{
max_len = idx - tree[go].mx;
st_pos = tree[go].mx + 1;
}
}
query(tree[root].child[type], x, depth - 1, idx);
}
else
{
query(tree[root].child[(type + 1) % 2], x, depth - 1, idx);
}
}
void solve()
{
cin >> n >> k;
for (int i = 1; i <= n; i ++)
{
cin >> a[i];
pref[i] = (pref[i - 1] ^ a[i]);
}
add(0, 0, 29, 0);
for (int i = 1; i <= n; i ++)
{
query(0, pref[i], 29, i);
add(0, pref[i], 29, i);
}
cout << st_pos << " " << max_len << endl;
}
int main()
{
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |