
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;}
发表评论
最新留言
网站不错 人气很旺了 加油
[***.192.178.218]2025年04月05日 15时13分43秒
关于作者

喝酒易醉,品茶养心,人生如梦,品茶悟道,何以解忧?唯有杜康!
-- 愿君每日到此一游!
推荐文章
POJ 1797 最短路变形所有路径最小边的最大值
2019-03-03
Emacs:Eldoc 全局化了 | Linux 中国
2019-03-03
在 Linux 中使用变量 | Linux 中国
2019-03-03
黑客利用“Simjacker”漏洞窃取手机数据,或影响十亿人 | 每日安全资讯
2019-03-03
Richard Stallman 被迫辞去 FSF 主席的职务 | Linux 中国
2019-03-03
Firefox 69 已可在 Fedora 中获取 | Linux 中国
2019-03-03
如何在 Linux Mint 中更换主题 | Linux 中国
2019-03-03
Linux 中国徽标征集活动结果 | Linux 中国
2019-03-03
黑吃黑——黑客组织通过黑客工具攻击其他黑客 | 每日安全资讯
2019-03-03
在 Python 调试过程中设置不中断的断点 | Linux 中国
2019-03-03
如何在 Bash 中编写函数 | Linux 中国
2019-03-03
AI 系统向自动化编码迈进 | Linux 中国
2019-03-03
使用 Jupyter Notebooks 构建一个远程管理控制台 | Linux 中国
2019-03-03
微软将举办 Azure 开放日活动,主讲 Linux 开源软件 | 新闻拍一拍
2019-03-03
使用开源可视化工具来理解你的 Python 代码 | Linux 中国
2019-03-03
【2021 ECUG Con】聚势而来,与你相约花开时
2019-03-03
硬核观察 | 有人在比特币骗局中损失了 10 个比特币
2019-03-03
初识 Python: global 关键字 | Linux 中国
2019-03-03