概述
题目链接:Choosing The Commander
维护一个带删除的Trie,然后每次在Trie中找即可。
分别讨论一下。
AC代码:
#pragma GCC optimize("-Ofast","-funroll-all-loops")
#include<bits/stdc++.h>
//#define int long long
using namespace std;
const int N=1e5+10;
int t[N*30][2],idx,cnt[N*30],q;
inline void insert(int x,int v){
int p=0;
for(int i=26;i>=0;i--){
int k=x>>i&1;
if(!t[p][k]) t[p][k]=++idx;
p=t[p][k]; cnt[p]+=v;
}
}
int ask(int x,int y){
int p=0,res=0;
for(int i=26;i>=0;i--){
if(y>>i&1){
if(x>>i&1) res+=cnt[t[p][1]],p=t[p][0];
else res+=cnt[t[p][0]],p=t[p][1];
}else{
if(x>>i&1) p=t[p][1];
else p=t[p][0];
}
if(!cnt[p]) break;
}
return res;
}
signed main(){
cin>>q;
for(int i=1,op,p,l;i<=q;i++){
scanf("%d %d",&op,&p);
if(op==1) insert(p,1);
else if(op==2) insert(p,-1);
else scanf("%d",&l),printf("%dn",ask(p,l));
}
return 0;
}
最后
以上就是落后衬衫为你收集整理的Codeforces - Choosing The Commander的全部内容,希望文章能够帮你解决Codeforces - Choosing The Commander所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复