BZOJ3685: 普通van Emde Boas树
发布日期:2021-05-06 03:47:40 浏览次数:10 分类:技术文章

本文共 1725 字,大约阅读时间需要 5 分钟。

SB 题 然而一直RE  发现是数组开小了

#include
#include
using namespace std; char c;inline void read(int &a){ a=0;do c=getchar();while(c<'0'||c>'9'); while(c<='9'&&c>='0')a=(a<<3)+(a<<1)+c-'0',c=getchar();}int Rec[6000001];int con;inline void Del(int x){ Rec[x]?con--:con; Rec[x]=0; while((!Rec[x^1])&&x^1) x>>=1,Rec[x]=0; }inline void insert(int x){ Rec[x]?con:con++; Rec[x]=1; while((!Rec[x^1])&&x^1) x>>=1,Rec[x]=1; }int base,n;inline int Pre(int x){ int data=-1; while(x^1) if(x&1) if(Rec[x^1])break; else x>>=1; else x>>=1; x^=1; if(!x) return -1; while(x
>=1; return x-base;} inline int Aft(int x){ int data=-1; while(x^1) if(x&1)x>>=1; else if(Rec[x^1])break; else x>>=1; x^=1; if(!x) return -1; while(x
>=1; return x-base;}inline int Has(int x){return Rec[x]?1:-1;}inline void print(int a){ if(a<0)putchar('-'),a=-a; if(a<10){putchar('0'+a),putchar('\n');return; } int base=1; while(base<=a)base=(base<<3)+(base<<1); base/=10; while(base)putchar('0'+a/base),a%=base,base/=10; putchar('\n');} inline int Min(){ if(con==0)return -1; int x=1; while(x
>=1; return x-base; } inline int Max(){ if(con==0)return -1; int x=1; while(x
>=1; return x-base; } int main(){ base=1058576; read(n); int m; int x,y; read(m); while(m--) { read(x); if(x==1) read(y),insert(base+y); else if(x==2) read(y),Del(base+y); else if(x==3) print(Min()); else if(x==4) print(Max()); else if(x==5) read(y),print(Pre(y+base)); else if(x==6) read(y),print(Aft(y+base)); else if(x==7) read(y),print(Has(y+base)); } return 0;}

上一篇:BZOJ2194: 快速傅立叶之二
下一篇:BZOJ2508: 简单题

发表评论

最新留言

网站不错 人气很旺了 加油
[***.192.178.218]2025年04月05日 15时13分43秒

关于作者

    喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!

推荐文章