【BZOJ3196】【Luogu P3380】 【模板】二逼平衡树(树套树)
做数据结构一定要平\((fo)\)心\((de)\)静\((yi)\)气\((pi)\)。。。不然会四处出锅的\(QAQ\)
写法:线段树套平衡树,\(O(Nlog^3N)\)。五个操作如果是对于整个区间的,那么就是平衡树板子题。现在既然是放在子区间上的,那么套一个线段树就好啦~
#include <bits/stdc++.h>
using namespace std;
const int N = 50000 + 5;
const int INF = 1e8 + 5;
#define ls (p << 1)
#define rs (p << 1 | 1)
#define mid ((l + r) >> 1)
int n, m, tot, arr[N];
struct FHQ_Node {
int w, lc, rc, sz, rd;
}t[N << 8];
struct FHQ_Treap {
int rt;
int NewNode (int w) {
t[++tot] = FHQ_Node {w, 0, 0, 1, rand ()};
return tot;
}
void push_up (int p) {
t[p].sz = 1;
if (t[p].lc) t[p].sz += t[t[p].lc].sz;
if (t[p].rc) t[p].sz += t[t[p].rc].sz;
}
void split (int now, int &A, int &B, int w) {
if (now == 0) {
A = B = 0; return;
}
if (t[now].w <= w) {
A = now; split (t[now].rc, t[A].rc, B, w);
} else {
B = now; split (t[now].lc, A, t[B].lc, w);
}
push_up (now);
}
int merge (int A, int B) {
if (A * B == 0) {
return A + B;
}
if (t[A].rd < t[B].rd) {
t[A].rc = merge (t[A].rc, B);
push_up (A); return A;
} else {
t[B].lc = merge (A, t[B].lc);
push_up (B); return B;
}
}
int x, y, z;
void Insert (int w) {
split (rt, x, y, w);
rt = merge (x, merge (NewNode (w), y));
// cout << "rt = " << rt << endl;
}
void Delete (int w) {
split (rt, x, y, w - 1);
split (y, y, z, w);
y = merge (t[y].lc, t[y].rc);
rt = merge (x, merge (y, z));
}
int pre (int w) {
split (rt, x, y, w - 1);
int p = x;
if (p == 0) {
return -0x7fffffff;
}
while (t[p].rc != 0) {
p = t[p].rc;
}
rt = merge (x, y);
return t[p].w;
}
int nxt (int w) {
split (rt, x, y, w);
int p = y;
if (p == 0) {
return +0x7fffffff;
}
while (t[p].lc != 0) {
p = t[p].lc;
}
rt = merge (x, y);
return t[p].w;
}
void print (int p) {
if (t[p].lc) print (t[p].lc);
// cout << "p = " << p << " w = " << t[p].w << " sz = " << t[p].sz << endl;
if (t[p].rc) print (t[p].rc);
}
int rank (int w) {
split (rt, x, y, w - 1);
int ret = t[x].sz + 1;
rt = merge (x, y);
// print (rt); cout << endl;
return ret;
}
};
struct Segment_Tree {
FHQ_Treap tree[N << 2];
void modify (int pos, int wpre, int wnew, int l = 1, int r = n, int p = 1) {
// cout << "p = " << p << endl;
if (wpre != -1) {tree[p].Delete (wpre);/*cout << "tree[" << p << "].Delete (" << wpre << ");" << endl;*/}
if (wnew != -1) {tree[p].Insert (wnew);/*cout << "tree[" << p << "].Insert (" << wnew << ");" << endl;*/}
if (l == r) return;
if (pos <= mid) {
modify (pos, wpre, wnew, l, mid + 0, ls);
} else {
modify (pos, wpre, wnew, mid + 1, r, rs);
}
}
int tot, sta[N];
void get_segment (int nl, int nr, int l = 1, int r = n, int p = 1) {
if (p == 1) tot = 0;
if (nl <= l && r <= nr) {
sta[++tot] = p; return;
}
if (nl <= mid) get_segment (nl, nr, l, mid + 0, ls);
if (mid < nr) get_segment (nl, nr, mid + 1, r, rs);
}
int rank (int l, int r, int w) {
get_segment (l, r);
int ret = 1;
for (int i = 1; i <= tot; ++i) {
// cout << tree[sta[i]].rank (w) << endl;
ret += (tree[sta[i]].rank (w) - 1);
}
// cout << "val = " << w << " rank = " << ret << endl;
return ret;
}
int kth (int l, int r, int k) {
int lval = 0, rval = INF;
// cout << "k = " << k << endl;
while (lval < rval) {
// getchar ();
int _mid = (lval + rval + 1) >> 1;
// cout << "lval = " << lval << " rval = " << rval << " mid = " << _mid << " rank " << k << " = " << rank (l, r, _mid) << endl;
if (rank (l, r, _mid) <= k) {
lval = _mid;
} else {
rval = _mid - 1;
}
}
return lval;
}
int pre (int l, int r, int w) {
get_segment (l, r);
int maxw = -0x7fffffff;
for (int i = 1; i <= tot; ++i) {
maxw = max (maxw, tree[sta[i]].pre (w));
}
return maxw;
}
int nxt (int l, int r, int w) {
get_segment (l, r);
int minw = +0x7fffffff;
for (int i = 1; i <= tot; ++i) {
minw = min (minw, tree[sta[i]].nxt (w));
}
return minw;
}
}tr;
int read () {
int s = 0, ch = getchar ();
while (!isdigit (ch)) {
ch = getchar ();
}
while (isdigit (ch)) {
s = s * 10 + ch - '0';
ch = getchar ();
}
return s;
}
int main () {
// freopen ("data.in", "r", stdin);
srand (time (NULL));
n = read (), m = read ();
for (int i = 1; i <= n; ++i) {
int w = read ();
tr.modify (i, -1, w);
arr[i] = w;
// cout << endl;
}
int opt, pos, l, r, k;
for (int i = 1; i <= m; ++i) {
opt = read ();
if (opt == 1) {
l = read (), r = read (), k = read ();
cout << tr.rank (l, r, k) << endl;
}
if (opt == 2) {
l = read (), r = read (), k = read ();
cout << tr.kth (l, r, k) << endl;
}
if (opt == 3) {
pos = read (), k = read ();
tr.modify (pos, arr[pos], k);
arr[pos] = k;
}
if (opt == 4) {
l = read (), r = read (), k = read ();
cout << tr.pre (l, r, k) << endl;
}
if (opt == 5) {
l = read (), r = read (), k = read ();
cout << tr.nxt (l, r, k) << endl;
}
}
}
【BZOJ3196】【Luogu P3380】 【模板】二逼平衡树(树套树)的更多相关文章
- 【bzoj3196】Tyvj 1730 二逼平衡树 线段树套Treap
题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:1.查询k在区间内的排名2.查询区间内排名为k的值3.修改某一位值上的数值4.查询k在区间内的前驱(前驱定义 ...
- bzoj 3196 Tyvj 1730 二逼平衡树(线段树套名次树)
3196: Tyvj 1730 二逼平衡树 Time Limit: 10 Sec Memory Limit: 128 MBSubmit: 1807 Solved: 772[Submit][Stat ...
- bzoj 3196/ Tyvj 1730 二逼平衡树 (线段树套平衡树)
3196: Tyvj 1730 二逼平衡树 Time Limit: 10 Sec Memory Limit: 128 MB[Submit][Status][Discuss] Description ...
- 【BZOJ3196】Tyvj 1730 二逼平衡树
Description 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:1.查询k在区间内的排名2.查询区间内排名为k的值3.修改某一位值上的数值4.查询k在区间内的 ...
- BZOJ3196 二逼平衡树 ZKW线段树套vector(滑稽)
我实在是不想再打一遍树状数组套替罪羊树了... 然后在普通平衡树瞎逛的时候找到了以前看过vector题解 于是我想:为啥不把平衡树换成vector呢??? 然后我又去学了一下ZKW线段树 就用ZKW线 ...
- BZOJ3196 二逼平衡树 【线段树套平衡树】
题目 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 1.查询k在区间内的排名 2.查询区间内排名为k的值 3.修改某一位值上的数值 4.查询k在区间内的前驱(前驱 ...
- BZOJ 3196 Tyvj 1730 二逼平衡树:线段树套splay
传送门 题意 给你一个长度为 $ n $ 有序数列 $ a $ ,进行 $ m $ 次操作,操作有如下几种: 查询 $ k $ 在区间 $ [l,r] $ 内的排名 查询区间 $ [l,r] $ 内排 ...
- [BZOJ3196] [Tyvj1730] 二逼平衡树(线段树 套 Splay)
传送门 至少BZOJ过了,其他的直接弃. 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 1.查询k在区间内的排名 2.查询区间内排名为k的值 3.修改某一位值上的 ...
- bzoj 3196 Tyvj 1730 二逼平衡树【线段树 套 splay】
四舍五入就是个暴力. 对于线段树的每个区间都开一棵按权值排序的splay 对于第二个操作,二分一下,每次查询mid的排名,复杂度 $ O(nlog(n)^{3}) $ 其余的操作都是$ O(nlog( ...
- 洛谷 P3380 bzoj3196 Tyvj1730 【模板】二逼平衡树(树套树)
[模板]二逼平衡树(树套树) 题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 查询k在区间内的排名 查询区间内排名为k的值 修改某一位值上的数值 查询k在 ...
随机推荐
- 【HANA系列】SAP HANA SQL计算两个日期的差值
公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[HANA系列]SAP HANA SQL计算两个 ...
- 小程序入门 MQTT物联网协议 publish 和订阅subscribe onenet 阿里云 百度云 基于GPRS模块(SIM800C/SIM900A/SIM868等)和STM32主控芯片
本文基本公开了如何移植MQTT物联网协议到STM32平台上,并结合GPRS模块(SIM800C/SIM900A/SIM868等)实现publish和订阅topic从onenet,阿里云,百度云等.如果 ...
- Win10无线网络配置VMware的nat网络
1.在windows上用运行cmd,用ipconfig /all查看可用网络的dns服务器 2.配置VMnet8,其dns与本地的dns服务器相同 3.打开VMware Workstation 的编辑 ...
- numpy的concatenate实现矩阵拼接
concatenate() 我们先来介绍最全能的concatenate()函数,后面的几个函数其实都可以用concatenate()函数来进行等价操作. concatenate()函数根据指定的维度, ...
- IP划分
30.112.0.0 255.255.224.0/ 30.112.32.0 255.255.248.0 30.112.36.0 255.255.252.0 30.112.38.0 255.255. ...
- 关于session的一些问题
最近在做项目的时候碰见了session过期的问题,然后就上网查了一些资料,我将我整理过的知识点梳理一下,顺便说一下我的使用方案. Session存储在服务器端,一般为了防止在服务器的内存中(为了高速存 ...
- PowerShell学习记录
一.简介——连接 Powershell 是运行在windows机器上实现系统和应用程序管理自动化的命令行脚本环境.你可以把它看成是命令行提示符cmd.exe的扩充,不对,应当是颠覆. powershe ...
- Linux系统下部署Tomcat服务器
详细步骤如下: 1.下载xshell5和xftp5并安装,登录连接服务器,新建会话窗口: 2.安装配置JDK1.8,具体操作方法如下: (1)下载JDK地址:http://www.oracle.com ...
- python中进程的几种创建方式
在新创建的子进程中,会把父进程的所有信息复制一份,它们之间的数据互不影响. 使用os.fork()创建 该方式只能用于Unix/Linux操作系统中,在windows不能用. import os # ...
- VMware Ubuntu18.04 安装及配置笔记
安装Ubuntu 下载虚拟机VMware 下载镜像Ubuntu 过程略, 参考 https://zhuanlan.zhihu.com/p/38797088 Ubuntu配置 特别提示: 在Ubuntu ...