HDU 5536 Chip Factory (暴力 或者 01Trie)

题目大意:求max( (a[i] + a[j]) ^ a[k] ) (i, j, k都不相同)

思路:暴力可搞

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <string>
#include <string.h>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <list>
#include <bitset>
#include <stack>
#include <stdlib.h>
#define lowbit(x) (x&-x)
//ios::sync_with_stdio(false);
typedef long long ll;
typedef long long LL;
using namespace std;
int a[1001];
int main()
{
    ios::sync_with_stdio(false);
    int T;
    cin>>T;
    while(T--)
    {
        memset(a,0,sizeof(a));
        int n;
        cin>>n;
        int ans = 0;
        for(int i=0;i<n;i++)
            cin>>a[i];
        for(int i=0;i<n;i++)
            for(int j=i+1;j<n;j++)
                for(int k=j+1;k<n;k++)
                {
                    ans=max(ans,(a[i]+a[j])^a[k]);
                    ans=max(ans,(a[i]+a[k])^a[j]);
                    ans=max(ans,(a[k]+a[j])^a[i]);
                }
        cout<<ans<<endl;
    }
    return 0;
}

大神的0/1trie

01Tire的时候要注意下标不同,但是数字可能相同
01Trie (3s +)
#include <cstdio>  
#include <cstring>  
#include <algorithm>  
using namespace std;  
int const MAX = 1e5;  
int a[MAX];  
  
struct Trie  
{  
    int root, tot, next[MAX][2], cnt[MAX], end[MAX];  
  
    inline int Newnode()  
    {  
        memset(next[tot], -1, sizeof(next[tot]));  
        cnt[tot] = 0;  
        end[tot] = 0;  
        return tot ++;  
    }  
  
    inline void Init()  
    {  
        tot = 0;  
        root = Newnode();  
    }  
  
    inline void Insert(int x)  
    {  
        int p = root;  
        cnt[p] ++;  
        for(int i = 31; i >= 0; i --)  
        {  
            int idx = ((1 << i) & x) ? 1 : 0;  
            if(next[p][idx] == -1)  
                next[p][idx] = Newnode();  
            p = next[p][idx];  
            cnt[p] ++;  
        }  
        end[p] = x;  
    }  
  
    inline void Del(int x)  
    {  
        int p = root;  
        cnt[p] --;  
        for(int i = 31; i >= 0; i --)  
        {  
            int idx = ((1 << i) & x) ? 1 : 0;  
            p = next[p][idx];  
            cnt[p] --;  
        }  
    }  
  
    inline int Search(int x)  
    {  
        int p = root;  
        for(int i = 31; i >= 0; i --)  
        {  
            int idx = ((1 << i) & x) ? 1 : 0;  
            if(idx == 0)  
            {  
                if(next[p][1] != -1 && cnt[next[p][1]])  
                    p = next[p][1];   
                else  
                    p = next[p][0];  
            }  
            else  
            {  
                if(next[p][0] != -1 && cnt[next[p][0]])  
                    p = next[p][0];  
                else  
                    p = next[p][1];  
            }  
        }  
        return x ^ end[p];  
    }  
}tr;  
  
int main()  
{  
    int T;  
    scanf("%d", &T);  
    while(T--)  
    {  
        tr.Init();  
        int n, ma = 0;  
        scanf("%d", &n);  
        for(int i = 0; i < n; i++)  
        {  
            scanf("%d", &a[i]);  
            tr.Insert(a[i]);  
        }  
        for(int i = 0; i < n; i++)  
        {  
            for(int j = i + 1; j < n; j++)  
            {  
                tr.Del(a[i]);  
                tr.Del(a[j]);  
                ma = max(ma, tr.Search(a[i] + a[j]));  
                tr.Insert(a[i]);  
                tr.Insert(a[j]);  
            }  
        }  
        printf("%d\n", ma);  
    }  
}  


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值