伸展树模板

伸展树模板


#include <iostream>
#include <cstdio>#define pr(x) std::cout << #x << " : " << x << std::endlclass SplayTree{
public:struct Node{int val;int size;int tag;Node *father;Node *son[2];Node(int val,Node *father) {this -> son[0] = this -> son[1] = NULL;this -> tag = 0;this -> val = val;this -> father = father;}}*root;SplayTree(){root = NULL;}inline bool son(Node *f,Node *s) {return f && f -> son[1] == s;}inline void connect(Node *f,Node *s,bool k) {if(f == NULL)root = s;elsef -> son[k] = s;if(s != NULL)s -> father = f;}inline void maintain(Node *t) {t -> size = 1;if(t -> son[0]) t -> size += t -> son[0] -> size;if(t -> son[1]) t -> size += t -> son[1] -> size;}inline void rotate(Node *t) {Node *f = t -> father;Node *g = f -> father;pushdown(f);pushdown(t);bool a = son(f,t);connect(f,t->son[!a],a);connect(g,t,son(g,f));connect(t,f,!a);maintain(f);maintain(t);}inline void splay(Node *t,Node *p) {while(p != t -> father) {Node *f = t -> father;Node *g = f -> father;if(g == p) {rotate(t);}else {if(son(g,f) ^ son(f,t))rotate(t),rotate(t);elserotate(f),rotate(t);}}}inline void insert(int val) {if(root == NULL) {root = new Node(val,NULL);return ;}for(Node* t = root;t;t = t -> son[val > t -> val]) {pushdown(t);bool a = val > t -> val;if(t -> son[a] == NULL) {t -> son[a] = new Node(val,t);//maintain(t);splay(t -> son[a],NULL);break;}}}inline void erase(int k) {if(!root || root -> size <= 1) {root = NULL;return ;}if(k == 1) {splay(select(root, k),NULL);pushdown(root);root = root -> son[1];root -> father = NULL;}else if(k == root -> size) {splay(select(root, k),NULL);pushdown(root);root = root -> son[0];root -> father = NULL;}else {splay(select(root, k-1),NULL);splay(select(root, k+1),root);pushdown(root);pushdown(root -> son[1]);root -> son[1] -> son[0] = NULL;maintain(root -> son[1]);maintain(root);}}inline Node* select(Node *t,int k) {pushdown(t);int left = 0;if(t -> son[0]) left += t -> son[0] -> size;if(k == left + 1)return t;if(k <= left)return select(t -> son[0],k);elsereturn select(t -> son[1],k - left - 1);}inline Node* lower_bound(int val) {//不适用于翻转操作,因此不需pushdownif(!root)return NULL;Node* ans = NULL;for(Node *t = root;t;t = t -> son[val > t -> val]) {if(t -> val >= val) ans = t;}return ans;}inline void reverse(Node *t) {if(t)t -> tag ^= 1;}inline void pushdown(Node *t) {if(t && t -> tag) {std::swap(t -> son[0],t -> son[1]);reverse(t -> son[0]);reverse(t -> son[1]);t -> tag ^= 1;}}
};
int n,m;
int main()
{SplayTree tree;std::ios::sync_with_stdio(false);std::cin >> m;while(m --) {int tp;std::cin >> tp;if(tp == 1) {//插入一个数xint x;std::cin >> x;tree.insert(x);}else if(tp == 2) {//删除数值为x的数int x;std::cin >> x;auto res = tree.lower_bound(x);if(res && res -> val == x) {tree.splay(res,NULL);int k = (tree.root -> son[0] ? tree.root -> son[0] -> size:0) + 1;tree.erase(k);}}else if(tp == 3) {//输出数值为x的数的排名int x;std::cin >> x ;auto res = tree.lower_bound(x);if(res == NULL) {std::cout << res->size + 1 << std::endl;continue;}tree.splay(res,NULL);int k = 1;if(res -> son[0]) k += res -> son[0] -> size;std::cout << k << std::endl;}else if(tp == 4) {//找到第k个数字int k;std::cin >> k;std::cout << tree.select(tree.root,k)->val << std::endl;}else if(tp == 5) {//输出比x小的最大的数int x;std::cin >> x;int ans = -1000000000;for(auto t = tree.root;t;t = t -> son[x > t -> val]) {if(t -> val < x && t -> val > ans) ans = t -> val;}std::cout << ans << std::endl;}else {//输出比x大的最小的数int x;std::cin >> x;int ans = 1000000000;for(auto t = tree.root;t;t = t -> son[x >= t -> val]) {if(t -> val > x && t -> val < ans) ans = t -> val;}std::cout << ans << std::endl;}}return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/321111.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【DP】Sam数

Sam数 题目大意&#xff1a; 问位数为n&#xff0c;且每一位的数字与相邻数字的差值小于等于2的数有多少个 原题&#xff1a; 题目描述 小G最近发现了一种非常有趣的数&#xff0c;他将这种数称之为Sam数。Sam数具有以下特征&#xff1a;相邻两位的数字之差不超过2。小G还…

基于docker 如何部署surging分布式微服务引擎

1、前言转眼间surging 开源已经有1年了&#xff0c;经过1年的打磨&#xff0c;surging已从最初在window 部署的分布式微服务框架&#xff0c;到现在的可以在docker部署利用rancher 进行服务编排的分布式微服务引擎&#xff0c;再把业务进行剥离&#xff0c; 通过配置路径就能驱…

P4213-[模板]杜教筛(Sum)

正题 题目链接:https://www.luogu.com.cn/problem/P4213 题目大意 给出nnn&#xff0c;求∑i1nφ(i)\sum_{i1}^n\varphi(i)i1∑n​φ(i) 和 ∑i1nμ(i)\sum_{i1}^n\mu(i)i1∑n​μ(i) 解题思路 考虑如何将φ\varphiφ卷起来&#xff0c;我们可以乘上一个函数I(I(x)1)I(I(x)1…

线段树专题-等差子序列 BZOJ-2124

线段树专题-等差子序列 感谢 感谢孙耀峰的线段树PPT,使我获益匪浅. 题目来源 BZOJ−2124BZOJ-2124BZOJ−2124 题意 给出长度为nnn的1−n1-n1−n的排列AAA 问是否存在一组1≤p1≤p2≤...≤pl≤n,l≥31 \le p_1 \le p_2 \le ... \le p_l \le n,l \ge 31≤p1​≤p2​≤...≤p…

【模拟】小游戏

小游戏 题目大意&#xff1a; 有n个数形成一个环&#xff0c;从第S个开始&#xff0c;先往后数N个数然后把这个数取出来&#xff0c;再往前数K个数把这个数取出来&#xff0c;问取的数字依次是什么 原题&#xff1a; 题目描述 【题目背景】 yk同学是一个灰常灰常有爱的同…

P4051-[JSOI2007]字符加密【SA】

正题 题目链接:https://www.luogu.com.cn/problem/P4051 题目大意 给一个字符串&#xff0c;求它当每个环状字符串&#xff08;比如ABCABCABC的就是ABC,CAB,BCAABC,CAB,BCAABC,CAB,BCA&#xff09;排序后所有串的末尾连起来当字符串。 解题思路 这个其实就是每个串的后缀加上…

DevOps 实践:千里之行

在上一篇 DevOps 渊源&#xff1a;角色消融 中我们分析了在作坊式团队中的责任重叠&#xff0c;也回顾了 DBA 角色的消融。那么&#xff0c;如今我们讲的 DevOps 又是什么角色的消融呢&#xff1f; 我想你已经猜到了&#xff0c;接下来要消融的角色就是运维人员了。那这次又是什…

线段树专题-黑白棋盘 BZOJ-1453

线段树专题-黑白棋盘 题目来源 BZOJ−1453BZOJ-1453BZOJ−1453 题意 QQQ次操作每次操作给出(x,y)(x,y)(x,y),将(x,y)(x,y)(x,y)个格子颜色取反每次操作后,输出棋盘上黑白联通块的个数n≤100,Q≤104n \le 100,Q \le 10^4n≤100,Q≤104 题解 显然不能直接套并查集,因为直接套…

约数个数

约数个数 题目大意&#xff1a; 求a到b之间每个数的约数的个数之和 原题&#xff1a; 题目描述 定义f(x)为x的约数个数&#xff0c;x为正整数。 f(a)f(a1)……f(b)&#xff0c;即a,b之间每个数的约数的总和。 输入 一行两个正整数a、b&#xff0c;以一个空格隔开。 输出…

P2257-YY的GCD【莫比乌斯反演】

正题 题目链接:https://www.luogu.com.cn/problem/P2257 题目大意 给出n,mn,mn,m&#xff0c;求∑i1n∑j1m[gcd(i,j)∈p]\sum_{i1}^n\sum_{j1}^m[gcd(i,j)\in p]i1∑n​j1∑m​[gcd(i,j)∈p] 定义ppp是质数集 解题思路 首先考虑定义f(x)∑i1n∑j1m[gcd(i,j)x]f(x)\sum_{i1}…

asp.Net Core免费开源分布式异常日志收集框架Exceptionless安装配置以及简单使用图文教程...

最近在学习张善友老师的NanoFabric 框架的时了解到Exceptionless : https://exceptionless.com/ &#xff01;因此学习了一下这个开源框架&#xff01;下面对Exceptionless的学习做下笔记&#xff01;Exceptionless是什么&#xff1f;能做什么呢&#xff1f;“Exceptionless”这…

【dfs】【树】机器选择

机器选择 题目大意&#xff1a; 有一个树状的图&#xff0c;要求安一个点&#xff0c;使这个点到最远的点的距离最小 原题&#xff1a; 题目描述 自从省队NOI赛前集训在scz举行之后&#xff0c;一个名叫cs1.6.exe的文件开始在机房广泛使用起来。每天大家都要找神犇小X借移…

ACM-ICPC中博弈论的一些小小总结

博弈论 参考 [1]https://blog.csdn.net/clover_hxy/article/details/53818624 [2]https://blog.csdn.net/foreyes_1001/article/details/82862324 [3]https://www.cnblogs.com/lxm940130740/p/3268803.html 一.尼姆博弈 问题提出 下面给出Nim游戏的三种变体 现有nnn堆石子,每…

P3312-[SDOI2014]数表【莫比乌斯反演,树状数组】

正题 题目链接:https://www.luogu.com.cn/problem/P3312 题目大意 定义F(x)F(x)F(x)表示xxx的约数和 给出n,m,an,m,an,m,a&#xff0c;求∑i1n∑j1m[F(gcd(i,j))≤a]∗F(gcd(i,j))\sum_{i1}^n\sum_{j1}^m[F(gcd(i,j))\leq a]*F(gcd(i,j))i1∑n​j1∑m​[F(gcd(i,j))≤a]∗F(g…

使用 IIS 在 Windows 上托管 ASP.NET Core2.0

准备&#xff1a;操作系统&#xff1a;Windows Server 2008 R2 或更高版本开发环境&#xff1a;VS2017回到顶部第一步&#xff1a;新建项目ASP.NET Core Web应用程序在 Visual Studio 中&#xff0c;选择“文件”>“新建”>“项目”。在新建项目对话框的左侧窗格选择“.N…

数学推导题,NTT,快速数论变换,Wannafly-导数卷积

导数卷积 题目描述 题解 参考了一下标程的推导过程,因为这个推导对我这种数学弱渣真的有点难鸭. [1]f(x)f(x)f(x)的iii次导函数: f(i)(x)ai∗i!0!ai1∗(i1)!1!∗x1...an−1∗(n−1)!(n−1−i)!∗xn−1−if^{(i)}(x) a_{i}*\frac{i!}{0!} a_{i1}*\frac{(i1)!}{1!}*x^{1} ...…

初一级练习题(2019.3.8)

成绩&#xff1a; rankrankranknamenamenamescorescorescoreT1T1T1T2T2T2T3T3T3T4T4T4111hkyhkyhky250250250100100100100100100505050000222lyflyflyf240240240100100100505050505050404040333wjjwjjwjj210210210909090707070505050000555lthlthlth12012012020202050505050505…

使用 C# 代码实现拓扑排序

0.参考资料尊重他人的劳动成果&#xff0c;贴上参考的资料地址&#xff0c;本文仅作学习记录之用。https://www.codeproject.com/Articles/869059/Topological-sorting-in-Csharphttps://songlee24.github.io/2015/05/07/topological-sorting/https://www.cnblogs.com/skywang1…

P3327-[SDOI2015]约数个数和【莫比乌斯反演】

正题 题目链接:https://www.luogu.com.cn/problem/P3327 题目大意 TTT组询问给出n,mn,mn,m&#xff0c;d(x)d(x)d(x)表示xxx的约数个数&#xff0c;求∑i1n∑j1md(i∗j)\sum_{i1}^n\sum_{j1}^md(i*j)i1∑n​j1∑m​d(i∗j) 解题思路 对于iii和jjj的两个约数a,ba,ba,b如果他们…

数学推导题,NTT,快速数论变换,Wannafly-乒乓球

乒乓球 题目描述 小 BoBoBo 是某省乒乓球名列前茅的选手&#xff0c;现在他有 nnn 颗乒乓球一字排开&#xff0c;第iii颗乒乓球的权值为 wiw_iwi​ 每次他会随机从现有的乒乓球中等概率选一颗拿走&#xff0c;然后得到的收益是这颗球左边第一个乒乓球和右边第一个乒乓球的权值…