HDU 4825 Xor Sum(01字典树)题解

Posted kirinsb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 4825 Xor Sum(01字典树)题解相关的知识,希望对你有一定的参考价值。

思路:先把所有数字存进字典树,然后从最高位贪心。

代码:

#include<set>
#include<map>
#include<stack>
#include<cmath>
#include<queue>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
typedef long long ll;
const int maxn = 100000 + 10;
const int seed = 131;
const ll MOD = 1e9 + 7;
const ll INF = 1e17;
using namespace std;
int ch[32 * maxn][2], tot;
ll val[32 * maxn];
void init(){
    tot = 1;
    memset(ch[0], 0, sizeof(ch[0]));
}
void Insert(ll x){
    int root = 0;
    for(int i = 31; i >= 0; i--){
        int u = (x >> i) & 1;
        if(ch[root][u] == 0){
            memset(ch[tot], 0, sizeof(ch[root]));
            ch[root][u] = tot++;
        }
        root = ch[root][u];
    }
    val[root] = x;
}
ll query(ll x){
    int root = 0;
    for(int i = 31; i >= 0; i--){
        int u = (x >> i) & 1;
        if(ch[root][!u] != 0){
            root = ch[root][!u];
        }
        else root = ch[root][u];
    }
    return val[root];
}
int main(){
    int T, Case = 1;
    scanf("%d", &T);
    while(T--){
        init();
        int n, m;
        scanf("%d%d", &n, &m);
        for(int i = 0; i < n; i++){
            ll x;
            scanf("%lld", &x);
            Insert(x);
        }

        printf("Case #%d:
", Case++);
        while(m--){
            ll x;
            scanf("%lld", &x);
            printf("%lld
", query(x));
        }
    }
    return 0;
}

 

以上是关于HDU 4825 Xor Sum(01字典树)题解的主要内容,如果未能解决你的问题,请参考以下文章

Xor Sum 01字典树 hdu4825

HDU - 4825 Xor Sum(01字典树)

HDU 4825 Xor Sum(经典01字典树+贪心)

HDU 4825 Xor Sum(01字典树)题解

HDU 4825 Xor Sum 01字典树

Hdu4825Xor Sum(01字典树)