BZOJ 3224: Tyvj 1728 普通平衡树 vector

本文详细介绍了如何使用平衡树数据结构实现一系列操作,包括插入、删除、查询排名、查找特定排名的元素、确定元素的前驱和后继。

3224: Tyvj 1728 普通平衡树

Description

您需要写一种数据结构(可参考题目标题),来维护一些数,其中需要提供以下操作:
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.每个数的数据范围:[-1e7,1e7]

 

Source

题解:

vector水过

//meek///#include<bits/stdc++.h>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <string>
#include <cstring>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
#include <stack>
#include <sstream>
#include <vector>
using namespace std ;
#define mem(a) memset(a,0,sizeof(a))
#define pb push_back
#define fi first
#define se second
#define MP make_pair
typedef long long ll;

const int N = 100005;
const int inf = 99999999;
const int mod= 1000000007;


vector<int >s;

int main() {
    int n,op,x;
    scanf("%d",&n);
    while(n--) {
        scanf("%d%d",&op,&x);
        if(op==1)
            s.insert(upper_bound(s.begin(),s.end(),x),x);
        if(op==2)
            s.erase(lower_bound(s.begin(),s.end(),x));
        if(op==3)
            printf("%d\n",lower_bound(s.begin(),s.end(),x)-s.begin()+1);
        if(op==4)
            printf("%d\n",s[x-1]);
        if(op==5)
            printf("%d\n",*--(lower_bound(s.begin(),s.end(),x)));
        if(op==6)
            printf("%d\n",*(upper_bound(s.begin(),s.end(),x)));
    }
}
代码

 

转载于:https://www.cnblogs.com/zxhl/p/5063861.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值