前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDU5269 (字典树)

HDU5269 (字典树)

作者头像
dejavu1zz
发布2020-10-23 15:18:36
2370
发布2020-10-23 15:18:36
举报
文章被收录于专栏:奇妙的算法世界

题意描述

Memphis loves xor very musch.Now he gets an array A.The length of A is n.Now he wants to know the sum of all (lowbit(Ai xor Aj)) (i,j∈[1,n]) We define that lowbit(x)=2k,k is the smallest integer satisfied ((x and 2k)>0) Specially,lowbit(0)=0 Because the ans may be too big.You just need to output ans mod 998244353

求每个数和其他数异或后的lowbit之和

思路

由于异或的性质可知,只要找到一组两数第x位二进制不同的数,那么就找到了两数异或的第一个1,也就是lowbit的值。所以我们可以使用一个cnt数组来维护某一位出现的次数,如果在遍历的时候找到了一个点,就计算一次答案。

AC代码

代码语言:javascript
复制
#include<iostream>
#include<string>
#include<cstring>
#include<algorithm>
#define x first
#define y second
#define IOS ios::sync_with_stdio(false);cin.tie(0);
using namespace std;
typedef unsigned long long ULL;
typedef pair<int,int> PII;
typedef pair<long,long> PLL;
typedef pair<char,char> PCC;
typedef long long LL;
const int N=31*1e5+10;
const int M=150;
const int INF=0x3f3f3f3f;
const int MOD=998244353;
int Case=1;
LL bit[35],ans=0;
struct trie{
    int tot,root,child[N][2],cnt[N];
    bool flag[N];

    void init(){
        memset(child[1],0,sizeof child[1]);
        memset(cnt,0,sizeof cnt);
        flag[1]=false;
        tot=root=1;
    }

    void Insert(int u){
        int cur=root;
        for(int i=0;i<=30;i++){
            int t=u>>i&1;
            if(!child[cur][t]){
                child[cur][t]=++tot;
                memset(child[tot],0,sizeof child[tot]);
                flag[tot]=false;
            }
            if(child[cur][t^1]) ans+=bit[i]*cnt[child[cur][t^1]]%MOD;
            cur=child[cur][t];
            cnt[cur]++;
        }
    }
};
void solve(){
    int n;scanf("%d",&n);
    ans=0;
    trie tr;
    tr.init();
    for(int i=0;i<n;i++){
        int x;scanf("%d",&x);
        tr.Insert(x);
    }
    ans=ans*2%MOD;
    printf("Case #%d: %d\n",Case++,ans);
}
int main(){
    //IOS;
    bit[0]=1;
    for(int i=1;i<=30;i++) bit[i]=bit[i-1]*2;
    int t;scanf("%d",&t);
    while(t--){
        solve();
    }
    return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2020/07/17 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 题意描述
  • 思路
  • AC代码
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档