mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2025-02-20 00:46:38 +00:00
H1002. 【模板】字典树 2 [50' Code]
https://hydro.ac/record/615805562a2aefdda01dcf42
This commit is contained in:
parent
88f7936dac
commit
40ae7f0030
55
Hydro/H1002/H1002.cpp
Normal file
55
Hydro/H1002/H1002.cpp
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
#include <bits/stdc++.h>
|
||||||
|
|
||||||
|
using namespace std;
|
||||||
|
|
||||||
|
int n, a[1000005], ans;
|
||||||
|
|
||||||
|
struct node {
|
||||||
|
int val;
|
||||||
|
node* next[2];
|
||||||
|
|
||||||
|
~node() {
|
||||||
|
for (auto i : next) {
|
||||||
|
delete i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
void insert(node* root, int x, int b) {
|
||||||
|
if (!x) {
|
||||||
|
root->val++;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (root->next[(x >> b) & 1] == nullptr) root->next[(x >> b) & 1] = new node();
|
||||||
|
insert(root->next[(x >> b) & 1], x - (((x >> b) & 1) << b), b - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
int search(node* root, int x) {
|
||||||
|
int res = 0;
|
||||||
|
node* p = root;
|
||||||
|
for (int i = 30; i >= 0; i--) {
|
||||||
|
if (p == nullptr) break;
|
||||||
|
if (p->next[!((x >> i) & 1)] != nullptr) {
|
||||||
|
res += 1 << i;
|
||||||
|
p = p->next[!((x >> i) & 1)];
|
||||||
|
} else {
|
||||||
|
p = p->next[(x >> i) & 1];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
node* root = new node();
|
||||||
|
scanf("%d", &n);
|
||||||
|
for (int i = 0; i < n; i++) {
|
||||||
|
scanf("%d", a + i);
|
||||||
|
insert(root, a[i], 30);
|
||||||
|
}
|
||||||
|
for (int i = 0; i < n; i++) {
|
||||||
|
ans = max(ans, search(root, a[i]));
|
||||||
|
}
|
||||||
|
printf("%d\n", ans);
|
||||||
|
delete root;
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user