做数据结构一定要平\((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】 【模板】二逼平衡树(树套树)的更多相关文章

  1. 【bzoj3196】Tyvj 1730 二逼平衡树 线段树套Treap

    题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:1.查询k在区间内的排名2.查询区间内排名为k的值3.修改某一位值上的数值4.查询k在区间内的前驱(前驱定义 ...

  2. bzoj 3196 Tyvj 1730 二逼平衡树(线段树套名次树)

    3196: Tyvj 1730 二逼平衡树 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 1807  Solved: 772[Submit][Stat ...

  3. bzoj 3196/ Tyvj 1730 二逼平衡树 (线段树套平衡树)

    3196: Tyvj 1730 二逼平衡树 Time Limit: 10 Sec  Memory Limit: 128 MB[Submit][Status][Discuss] Description ...

  4. 【BZOJ3196】Tyvj 1730 二逼平衡树

    Description 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作:1.查询k在区间内的排名2.查询区间内排名为k的值3.修改某一位值上的数值4.查询k在区间内的 ...

  5. BZOJ3196 二逼平衡树 ZKW线段树套vector(滑稽)

    我实在是不想再打一遍树状数组套替罪羊树了... 然后在普通平衡树瞎逛的时候找到了以前看过vector题解 于是我想:为啥不把平衡树换成vector呢??? 然后我又去学了一下ZKW线段树 就用ZKW线 ...

  6. BZOJ3196 二逼平衡树 【线段树套平衡树】

    题目 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 1.查询k在区间内的排名 2.查询区间内排名为k的值 3.修改某一位值上的数值 4.查询k在区间内的前驱(前驱 ...

  7. BZOJ 3196 Tyvj 1730 二逼平衡树:线段树套splay

    传送门 题意 给你一个长度为 $ n $ 有序数列 $ a $ ,进行 $ m $ 次操作,操作有如下几种: 查询 $ k $ 在区间 $ [l,r] $ 内的排名 查询区间 $ [l,r] $ 内排 ...

  8. [BZOJ3196] [Tyvj1730] 二逼平衡树(线段树 套 Splay)

    传送门 至少BZOJ过了,其他的直接弃. 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 1.查询k在区间内的排名 2.查询区间内排名为k的值 3.修改某一位值上的 ...

  9. bzoj 3196 Tyvj 1730 二逼平衡树【线段树 套 splay】

    四舍五入就是个暴力. 对于线段树的每个区间都开一棵按权值排序的splay 对于第二个操作,二分一下,每次查询mid的排名,复杂度 $ O(nlog(n)^{3}) $ 其余的操作都是$ O(nlog( ...

  10. 洛谷 P3380 bzoj3196 Tyvj1730 【模板】二逼平衡树(树套树)

    [模板]二逼平衡树(树套树) 题目描述 您需要写一种数据结构(可参考题目标题),来维护一个有序数列,其中需要提供以下操作: 查询k在区间内的排名 查询区间内排名为k的值 修改某一位值上的数值 查询k在 ...

随机推荐

  1. Java 多线程爬虫及分布式爬虫架构

    这是 Java 爬虫系列博文的第五篇,在上一篇 Java 爬虫服务器被屏蔽,不要慌,咱们换一台服务器 中,我们简单的聊反爬虫策略和反反爬虫方法,主要针对的是 IP 被封及其对应办法.前面几篇文章我们把 ...

  2. Laravel底层原理系列

    Laravel 从学徒到工匠精校版 地址:https://laravelacademy.org/laravel-from-appreciate-to-artisan Advanced Applicat ...

  3. 0-1 RSS订阅

    RSS订阅 RSS是什么 中文维基百科对RSS的介绍 w3school对RSS的介绍 少数派的RSS介绍 RSS阅读器 Feedly:注册使用即可,一个账号可以订阅200个RSS源,完全足够日常需要 ...

  4. 【ABAP系列】SAP 使用特殊的技术更新数据库(ABAP)

    公众号:SAP Technical 本文作者:matinal 原文出处:http://www.cnblogs.com/SAPmatinal/ 原文链接:[ABAP系列]SAP 使用特殊的技术更新数据库 ...

  5. python(递归实例)

    摘要:在学习python递归知识点时,总是一知半解,似懂非懂的..在反复看视频翻资料同时,也收集案例来分析求证..通过分析下面几个案例希望能有所帮助!!! 1.用递归的方法实现阶乘... def nu ...

  6. SolidWorks学习笔记3几个草图实例

    绘制五角星 创建一个正五边形的内切圆,圆心和圆点重合,注意垂直关系. 选中所有,都设置为构造线. 依次连接直线, 点击裁剪实体,划过所要删除的线段. 绘制高度对称草图 注意事项: 最上和最下的圆心要和 ...

  7. 将对象以json格式写入到文件中

    将 list 对象以json格式写入到文件中 try { ObjectMapper mapper = new ObjectMapper(); String value = mapper.writeVa ...

  8. c++ string详解 assign

    assign方法可以理解为先将原字符串清空,然后赋予新的值作替换. 返回类型为 string类型的引用.其常用的重载也有下列几种: a. string& assign ( const stri ...

  9. Elasticsearch-布尔类型

    boolean类型用于存储文档中的true/false.例如:专辑类型中需要添加一个字段表示是否可以下载,如下 curl -XPUT 'localhost:9200/music/album/4' -d ...

  10. python 爬虫--下载图片,下载音乐

    #下载图片 imgUrl='http://www.pptbz.com/pptpic/UploadFiles_6909/201211/2012111719294197.jpg' r=requests.g ...