欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

CSU1216: 异或最大值(01Trie树)

程序员文章站 2022-10-04 20:26:41
Description 给定一些数,求这些数中两个数的异或值最大的那个值 Input 多组数据。第一行为数字个数n,1 <= n <= 10 ^ 5。接下来n行每行一个32位有符号非负整数。 Output 任意两数最大异或值 Sample Input 3 3 7 9 Sample Output 14 ......

Description

给定一些数,求这些数中两个数的异或值最大的那个值

 

Input

多组数据。第一行为数字个数n,1 <= n <= 10 ^ 5。接下来n行每行一个32位有符号非负整数。

 

Output

任意两数最大异或值

 

Sample Input

3
3
7
9

Sample Output

14

Hint

Source

CSGrandeur的数据结构习题

 

毒瘤老师给学弟们出这种题真的好么qwq。

难不成想让他们现场构造01trie这种数据结构?雾

 

#include<cstdio>
#include<algorithm>
#include<cmath>
#define LL long long 
using namespace std;
const int MAXN = 51, INF = 1e9 + 10;
const double eps = 1e-8;
inline int read() {
    char c = getchar();int x = 0,f = 1;
    while(c < '0' || c > '9'){if(c == '-')f = -1;c = getchar();}
    while(c >= '0' && c <= '9'){x = x * 10 + c - '0',c = getchar();}
    return x * f;
}
int N, M;
LL a[10001][1001];
void Pivot(int l, int e) {
    double t = a[l][e]; a[l][e] = 1;
    for(int i = 0; i <= N; i++) a[l][i] /= t;
    for(int i = 0; i <= M; i++) {
        if(i != l && abs(a[i][e]) > eps) {
            t = a[i][e]; a[i][e] = 0;
            for(int j = 0; j <= N; j++)
                a[i][j] -= a[l][j] * t;
        }
    }
}
bool simplex() {
    while(1) {
        int l = 0, e = 0; double mn = INF;
        for(int i = 1; i <= N; i++)
            if(a[0][i] > eps) 
                {e = i; break;}
        if(!e) break;
        for(int i = 1; i <= M; i++)
            if(a[i][e] > eps && a[i][0] / a[i][e] < mn)
                mn = a[i][0] / a[i][e], l = i;
        Pivot(l, e);
    }
    return 1;
}
int main() {
//    freopen("a.in", "r", stdin);
    srand(19260817);
    N = read(); M = read();
    for(int i = 1; i <= N; i++) a[0][i] = read();    
    for(int i = 1; i <= M; i++) { 
        int K = read();
        while(K--) {
            int S = read(), T = read();
            for(int j = S; j <= T; j++)    
                a[i][j] = 1;        
        }
        int C = read();
        a[i][0] = C;
    }
    simplex();
    printf("%lld", -a[0][0]);
    return 0;
}