【BZOJ - 3224】普通平衡树(Splay模板题)

题干:

您需要写一种数据结构(可参考题目标题),来维护一些数,其中需要提供以下操作:
1. 插入x数
2. 删除x数(若有多个相同的数,因只删除一个)
3. 查询x数的排名(若有多个相同的数,因输出最小的排名)
4. 查询排名为x的数
5. 求x的前驱(前驱定义为小于x,且最大的数)
6. 求x的后继(后继定义为大于x,且最小的数)

Input

第一行为n,表示操作的个数,下面n行每行有两个数opt和x,opt表示操作的序号(1<=opt<=6)

Output

对于操作3,4,5,6每行输出一个数,表示对应答案

Sample Input

10 1 106465 4 1 1 317721 1 460929 1 644985 1 84185 1 89851 6 81968 1 492737 5 493598

Sample Output

106465 84185 492737

Hint

1.n的数据范围:n<=100000

2.每个数的数据范围:[-2e9,2e9]

解题报告:

Splay的大模板题。

AC代码:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<queue>
#include<map>
#include<vector>
#include<set>
#include<string>
#include<cmath>
#include<cstring>
#define F first
#define S second
#define ll long long
#define pb push_back
#define pm make_pair
using namespace std;
typedef pair<int,int> PII;
const int MAX =100007;//= 2e5 + 5;
int fa[MAX],cnt[MAX],tr[MAX][2],size[MAX],val[MAX],tot,root;
inline bool get(int x) {return tr[fa[x]][1]==x;
}
inline void clear(int x) {fa[x]=cnt[x]=tr[x][0]=tr[x][1]=size[x]=val[x]=0;
}
inline void pushup(int x) {//更新x节点的信息 if(x == 0) return;//其实不加也行,因为不会去维护根节点的父节点的关系。size[x] = cnt[x];
//	if(tr[x][0]) size[x] += size[tr[x][0]] ;
//	if(tr[x][1]) size[x] += size[tr[x][1]] ;没啥用、、size[x] += size[tr[x][0]] + size[tr[x][1]];
}
inline void rotate(int x) {//以下注释默认我是我爸的左儿子 int old = fa[x],oldf = fa[old],w=get(x),ww=get(old);//修改我爸和我右儿子的关系 tr[old][w] = tr[x][w^1]; fa[tr[old][w]]=old;//修改我和我爸的关系 tr[x][w^1] = old;fa[old] = x;//修改我和我爷爷的关系 fa[x] = oldf;if(oldf) tr[oldf][ww] = x;pushup(old);pushup(x);
} inline void splay(int x) {for(int old=fa[x]; old = fa[x]; rotate(x)) {//默认根节点是0的情况下才可以这么用判断条件 if(fa[old]) {rotate(get(x) == get(old) ? old : x);}}root = x;
}
inline void insert(int x) {//x为权值 if(root == 0) {val[++tot] = x;root=tot;cnt[tot]=size[tot]=1;fa[tot] = tr[tot][0]=tr[tot][1]=0;return; }int cur = root,old = 0;while(1) {if(x == val[cur]) {cnt[cur]++;pushup(cur);pushup(old);splay(cur);return;}old = cur;cur = tr[cur][val[cur] < x];if(cur == 0) {val[++tot] = x;fa[tot] = old; tr[tot][0]=tr[tot][1]=0; tr[old][x>val[old]] = tot;//维护父节点和孩子节点 cnt[tot] = size[tot] = 1;pushup(old); splay(tot);return;}}
}
inline int pre(int x) {int cur = root,old=0;while(cur) {if(val[cur] < x) old = cur,cur = tr[cur][1];else cur = tr[cur][0]; }return old;
}
inline int nxt(int x) {int cur = root,old = 0;while(cur) {if(val[cur] > x) old = cur,cur = tr[cur][0];else cur = tr[cur][1];}return old;
}
//inline int pre() {
//	int cur = tr[root][0];
//	while(tr[cur][1]) cur = tr[cur][1];
//	return cur;
//}
//inline int nxt() {
//	int cur = tr[root][1];
//	while(tr[cur][0]) cur = tr[cur][0];
//	return cur;
//}inline int Rank(int x) {//查询x的Rank int cur = root,res = 0;while(1) {
//		if(cur == 0) return -1;//说明数据非法 if(x < val[cur]) cur = tr[cur][0];else {res += size[tr[cur][0]];if(x == val[cur]) {splay(cur); return res+1;}//此时x和树中的点重合,树中不允许有两个相同的点res += cnt[cur]; cur = tr[cur][1];}}
}
inline int kth(int x) {//查询排名为x的数的val int cur = root;while(1) {if(tr[cur][0] && x <= size[tr[cur][0]]) cur = tr[cur][0];else {int tmp = size[tr[cur][0]] + cnt[cur];if(x <= tmp) {splay(cur);return val[cur];}x -= tmp;cur = tr[cur][1];}}
}
inline void del(int x) {Rank(x);//找到x的排名并把它旋转上来if(cnt[root] > 1) {cnt[root]--;return;}if(!tr[root][0] && !tr[root][1]) root=0;//可加个clear();函数else if(!tr[root][0]) {root = tr[root][1];fa[root]=0;} //pushup(root);else if(!tr[root][1]) {root = tr[root][0];fa[root]=0;}//pushup(root);else {int leftbig = tr[root][0],oldrt=root;while(tr[leftbig][1]) leftbig = tr[leftbig][1];splay(leftbig);tr[root][1]=tr[oldrt][1];fa[tr[oldrt][1]]=root;pushup(root);}
}
//全程表示根节点不是0,但是根节点的父节点,我们认为是0 (fa[rt]==0) 
int main()
{int n;cin>>n;for(int i = 1; i<=n; i++) {int op,x;scanf("%d%d",&op,&x);if(op == 1) insert(x);if(op == 2) del(x);if(op == 3) printf("%d\n",Rank(x));if(op == 4) printf("%d\n",kth(x));if(op == 5) printf("%d\n",val[pre(x)]);if(op == 6) printf("%d\n",val[nxt(x)]);}return 0 ;
}

总结:呜呜呜好难写、、、

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

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

相关文章

ROS中常见坐标系定义及基本单位

为了方便开发者代码复用&#xff0c;ROS中统一定义了常见的坐标系&#xff08;REP&#xff09;&#xff0c;所有的坐标系都是右手坐标系。 1. map --固定的世界坐标系&#xff0c;z轴垂直向上。在map中表示的移动平台的pose是没有drift&#xff0c;没有累计误差的。而且&…

【Gym - 101061F】Fairness(dp,思维)

题干&#xff1a; Dwik and his brother Samir both received scholarships from a famous university in India. Their father, Besher, wants to send some money with each of them. Besher has n coins, the ith coin has a value of ai. He will distribute these coins…

(2)连续存储数组的方法

目录 连续存储的代表应用&#xff1a;数组 1&#xff09;结构体的定义&#xff1a; 2&#xff09;基本操作 对数据进行初始化 判断数组是否为空 输出数组 判断数组是否满 追加元素 插入数组元素 删除数组元素 逆序 对数组进行排序 这篇笔记是根据郝斌老师的上课讲义…

什么是欧拉角/姿态角?

用一句话说&#xff0c;欧拉角就是物体绕坐标系三个坐标轴(x,y,z轴&#xff09;的旋转角度。 在这里&#xff0c;坐标系可以是世界坐标系&#xff0c;也可以是物体坐标系&#xff0c;旋转顺序也是任意的&#xff0c;可以是xyz,xzy,yxz,zxy,yzx,zyx中的任何一种&#xff0c;甚至…

机器学习笔记(十二):聚类

目录 1&#xff09;Unsupervised learning introduction 2&#xff09;K-means algorithm 3&#xff09;Optimization objective 4&#xff09;Random initialization 5&#xff09;Choosing the number of clusters 1&#xff09;Unsupervised learning introduction 下…

ros amcl 参数配置

最近搞ros机器人定位&#xff0c;配置文件一堆参数官网只有简单说明&#xff0c;一脸懵逼&#xff0c;只能去看看算法&#xff0c;大概了解下。 以下是看《概率机器人》定位后的理解 <launch> <!-- by dyan1024//后为wiki官网的参数说明 &#xff08;&#xff09;中为…

【BZOJ - 3993】星际战争(网络流最大流+二分)

题干&#xff1a; 3333年&#xff0c;在银河系的某星球上&#xff0c;X军团和Y军团正在激烈地作战。在战斗的某一阶段&#xff0c;Y军团一共派遣了N个巨型机器人进攻X军团的阵地&#xff0c;其中第i个巨型机器人的装甲值为Ai。当一个巨型机器人的装甲值减少到0或者以下时&#…

Linux下root登陆mysql

错误如下&#xff1a; 1.停止mysql服务 #service mysql stop2.进入到skip-grant-tables模式&#xff1a; #mysqld_safe --skip-grant-tables3.root连接mysql数据库&#xff1a; #mysql -uroot -p如出现如下错误&#xff1a; 其实&#xff0c;原本就没有这个目录&#xff1…

机器学习笔记(十三):降维

目录 1&#xff09;Motivation 1:Data Compression 2&#xff09;Motivation 2: Data Visualization 3&#xff09;Principal Component Analysis problem formulation 4&#xff09;Principal Component Analysis algorithm 5&#xff09;Advice for applying PCA 1&…

Move_base理解

move_base的输出其实就是线速度和角速度&#xff0c;对于一般的差速轮小车底盘就是x轴方向(正前)的速度以及自转角速度&#xff0c;所以这个你用船或者用小车都是无所谓的&#xff0c;只需要根据线速度和角速度结合自己底盘的运动学模型做解析然后控制就可以了。你可以看一下比…

【POJ - 2096】Collecting Bugs(概率dp)

题干&#xff1a; Ivan is fond of collecting. Unlike other people who collect post stamps, coins or other material stuff, he collects software bugs. When Ivan gets a new program, he classifies all possible bugs into n categories. Each day he discovers exac…

Django框架(展示图书信息简易版)

Linux环境下 创建虚拟环境 在python3中&#xff0c;创建虚拟环境 mkvirtualenv -p python3 虚拟机名称 mkvirtualenv -p python3 py_django查看创建的虚拟环境 workon退出当前的虚拟环境 deactivate 删除虚拟环境&#xff08;不要做&#xff09; rmvirtualenv 虚拟机名称 …

吴恩达机器学习作业(五):支持向量机

目录 1&#xff09;数据预处理 2&#xff09;Scikit-learn支持向量机 3&#xff09;决策边界比较 4&#xff09;非线性SVM 5&#xff09;最优超参数 6&#xff09;垃圾邮件过滤器 在本练习中&#xff0c;我们将使用支持向量机&#xff08;SVM&#xff09;来构建垃圾邮件分…

一些关于ROS中move_base的理解

move_base是ROS下关于机器人路径规划的中心枢纽。它通过订阅激光雷达、map地图、amcl的定位等数据&#xff0c;然后规划出全局和局部路径&#xff0c;再将路径转化为机器人的速度信息&#xff0c;最终实现机器人导航。这里又要盗官网的图了。 上面这个图很好的展示了move_base的…

机器学习笔记(十四):异常检测

目录 1&#xff09;Problem motivation 2&#xff09;Gaussian distribution 3&#xff09;Algorithm 4&#xff09;Developing and evaluating an anomaly detection system 5&#xff09;Anomaly detection vs. supervised learning 6&#xff09;Choosing what featur…

【Gym - 101606F】Flipping Coins(概率dp)

题干&#xff1a; Here’s a jolly and simple game: line up a row of N identical coins, all with the heads facing down onto the table and the tails upwards, and for exactly K times take one of the coins, toss it into the air, and replace it as it lands eith…

python图书管理系统

以下三个文件需在同一目录下。json文件格式不能更改 books-fxm.json [{"name": "图书管理","author": "fxm","price": "99999"},{"name": "完美世界","author": "辰东"…

ROS actionlib学习(一)

actionlib是ROS中一个很重要的功能包集合&#xff0c;尽管在ROS中已经提供了srevice机制来满足请求—响应式的使用场景&#xff0c;但是假如某个请求执行时间很长&#xff0c;在此期间用户想查看执行的进度或者取消这个请求的话&#xff0c;service机制就不能满足了&#xff0c…

python 基础知识

- python语言特点 简单、易学、高级 面向对象 免费和开源 边编译边执行 &#xff1a;python是解释型语言&#xff0c;边编译边执行。 丰富的库 : python拥有许多功能丰富的库。 胶水语言 : 可以拼接c&#xff0c;c&#xff0c;java等语言 可移植 &#xff1a; python能运行在不…

机器学习笔记(十五):推荐系统

目录 1&#xff09;Problem formulation 2&#xff09;Content-based recommendations 3&#xff09;Collaborative filtering 4&#xff09;Collaborative filtering algorithm 5&#xff09;Vectorization: Low rank matrix factorization 6&#xff09;Implementation…