Codeforces Round 1285 D. Dr. Evil Underscores 字典树上分治

题目链接:https://codeforces.com/contest/1285/problem/D
题目大意:给你n个,让你寻找一个x使得,max 1≤i≤n (ai⊕X) 最小。
输出这个最小值。
在这里插入图片描述
思路:从高位开始,

如果这位有的数是,有的是0,那么x这位取1,max答案就在这位是0的那些数当。那么x这位取1,max答案就在这位是0的那些数当中。取0还是1就看这两堆数谁在pos-1 - 0位取得的最大值最小。

如果这位只有0,那么X这位是1

如果这位只有1,那么X这位是0

字典树上分治一下就好了。

#include <bits/stdc++.h>
#define LL long long
using namespace std;

struct Tree{
    Tree *L, *R;
    Tree(){
        L=NULL, R=NULL;
    }
}root;

int a[100005];

void Insert(Tree *root, int s, int pos){//建树
    if(pos==-1){
        return ;
    }
    if(s&(1<<pos)){
        if(root->R==NULL){
            root->R=new Tree();
        }
        Insert(root->R, s, pos-1);
    }
    else{
        if(root->L==NULL){
            root->L=new Tree();
        }
        Insert(root->L, s, pos-1);
    }
}

int DFS(Tree *root, int pos){//分治


    if(pos==-1||root==NULL){
        return 0;
    }
    if(root->L==NULL){
        return DFS(root->R, pos-1);
    }
    if(root->R==NULL){
        return DFS(root->L, pos-1);
    }
    return min(DFS(root->L, pos-1), DFS(root->R, pos-1))+(1<<pos);


}

int main(){

    int n;
    scanf("%d", &n);
    for(int i=1; i<=n; i++){
        scanf("%d", &a[i]);
        Insert(&root, a[i], 29);
    }
    printf("%d\n", DFS(&root, 29));

    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据提供的引用内容,Codeforces Round 511 (Div. 1)是一个比赛的名称。然而,引用内容中没有提供与这个比赛相关的具体信息或问题。因此,我无法回答关于Codeforces Round 511 (Div. 1)的问题。如果您有关于这个比赛的具体问题,请提供更多的信息,我将尽力回答。 #### 引用[.reference_title] - *1* [Codeforces Round 860 (Div. 2)题解](https://blog.csdn.net/qq_60653991/article/details/129802687)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [Codeforces Round 867 (Div. 3)(A题到E题)](https://blog.csdn.net/wdgkd/article/details/130370975)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [Codeforces Round 872 (Div. 2)(前三道](https://blog.csdn.net/qq_68286180/article/details/130570952)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值