原题链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1112

 #include<cstdio>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#define lc root<<1
#define rc root<<1|1
#define INF 0x3f3f3f3f
const int Max_N = ;
struct SBT{
int key, size, cnt;
SBT *ch[];
inline void push_up(){
size = ch[]->size + ch[]->size + cnt;
}
int cmp(int v) const{
if (v == key) return -;
return v > key;
}
}*null, stack[Max_N * ], *ptr[Max_N << ];
int sz = , sum = , arr[Max_N];
void init(){
null = &stack[sz++];
null->key = null->size = null->cnt = ;
}
void rotate(SBT* &x, int d){
SBT *k = x->ch[!d];
x->ch[!d] = k->ch[d];
k->ch[d] = x;
k->size = x->size;
x->push_up();
x = k;
}
void Maintain(SBT* &x, int d){
if (x->ch[d] == null) return;
if (x->ch[d]->ch[d]->size > x->ch[!d]->size){
rotate(x, !d);
} else if (x->ch[d]->ch[!d]->size > x->ch[!d]->size){
rotate(x->ch[d], d), rotate(x, !d);
} else {
return;
}
Maintain(x, ), Maintain(x, );
}
void insert(SBT* &x, int key){
if (x == null){
x = &stack[sz++];
x->ch[] = x->ch[] = null;
x->key = key, x->size = x->cnt = ;
} else {
int d = x->cmp(key);
x->size++;
if (- == d){
x->cnt++;
return;
}
insert(x->ch[d], key);
x->push_up();
Maintain(x, d);
}
}
void del(SBT* &x, int key){
if (x == null) return;
int d = x->cmp(key);
x->size--;
if (- == d){
if (x->cnt > ){
x->cnt--;
} else if (x->ch[] == null || x->ch[] == null){
x = x->ch[] != null ? x->ch[] : x->ch[];
} else {
SBT *ret = x->ch[];
for (; ret->ch[] != null; ret = ret->ch[]);
del(x->ch[], x->key = ret->key);
}
} else {
del(x->ch[d], key);
}
if (x != null) x->push_up();
}
int sbt_rank(SBT *x, int key){
int t, cur;
for (t = cur = ; x != null;){
t = x->ch[]->size;
if (key < x->key) x = x->ch[];
else if (key >= x->key) cur += x->cnt + t, x = x->ch[];
}
return cur;
}
void seg_built(int root, int l, int r){
for (int i = l; i <= r; i++) insert(ptr[root], arr[i]);
if (l == r) return;
int mid = (l + r) >> ;
seg_built(lc, l, mid);
seg_built(rc, mid + , r);
}
void seg_query(int root, int l, int r, int x, int y, int val){
if (x > r || y < l) return;
if (x <= l && y >= r){
sum += sbt_rank(ptr[root], val);
return;
}
int mid = (l + r) >> ;
seg_query(lc, l, mid, x, y, val);
seg_query(rc, mid + , r, x, y, val);
}
void seg_del(int root, int l, int r, int pos, int val){
if (pos > r || pos < l) return;
del(ptr[root], val);
if (l == r) return;
int mid = (l + r) >> ;
seg_del(lc, l, mid, pos, val);
seg_del(rc, mid + , r, pos, val);
}
void seg_insert(int root, int l, int r, int pos, int val) {
if (pos > r || pos < l) return;
insert(ptr[root], val);
if (l == r) return;
int mid = (l + r) >> ;
seg_insert(lc, l, mid, pos, val);
seg_insert(rc, mid + , r, pos, val);
}
void gogo(int n, int a, int b, int k){
int l = , r = INF;
while (l < r){
sum = ;
int mid = (l + r) >> ;
seg_query(, , n, a, b, mid);
if (sum < k) l = mid + ;
else r = mid;
}
printf("%d\n", l);
}
int main(){
#ifdef LOCAL
freopen("in.txt", "r", stdin);
freopen("out.txt", "w+", stdout);
#endif
char ch;
int t, n, m, a, b, k;
scanf("%d", &t);
while (t--){
sz = , init();
scanf("%d %d", &n, &m);
for (int i = ; i <= n; i++) scanf("%d", &arr[i]);
std::fill(ptr, ptr + (n << ), null);
seg_built(, , n);
while (m--){
getchar();
scanf("%c", &ch);
if (ch == 'Q'){
scanf("%d %d %d", &a, &b, &k);
gogo(n, a, b, k);
} else {
scanf("%d %d", &a, &b);
seg_del(, , n, a, arr[a]);
seg_insert(, , n, a, arr[a] = b);
}
}
}
return ;
}

zoj 2112 Dynamic Rankings的更多相关文章

  1. ZOJ 2112 Dynamic Rankings(动态区间第 k 大+块状链表)

    题目大意 给定一个数列,编号从 1 到 n,现在有 m 个操作,操作分两类: 1. 修改数列中某个位置的数的值为 val 2. 询问 [L, R] 这个区间中第 k 大的是多少 n<=50,00 ...

  2. 主席树[可持久化线段树](hdu 2665 Kth number、SP 10628 Count on a tree、ZOJ 2112 Dynamic Rankings、codeforces 813E Army Creation、codeforces960F:Pathwalks )

    在今天三黑(恶意评分刷上去的那种)两紫的智推中,突然出现了P3834 [模板]可持久化线段树 1(主席树)就突然有了不详的预感2333 果然...然后我gg了!被大佬虐了! hdu 2665 Kth ...

  3. 整体二分(SP3946 K-th Number ZOJ 2112 Dynamic Rankings)

    SP3946 K-th Number (/2和>>1不一样!!) #include <algorithm> #include <bitset> #include & ...

  4. 整体二分&cdq分治 ZOJ 2112 Dynamic Rankings

    题目:单点更新查询区间第k大 按照主席树的思想,要主席树套树状数组.即按照每个节点建立主席树,然后利用树状数组的方法来更新维护前缀和.然而,这样的做法在实际中并不能AC,原因即卡空间. 因此我们采用一 ...

  5. ZOJ 2112 Dynamic Rankings(主席树の动态kth)

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2112 The Company Dynamic Rankings ...

  6. ZOJ 2112 Dynamic Rankings(带修改的区间第K大,分块+二分搜索+二分答案)

    Dynamic Rankings Time Limit: 10 Seconds      Memory Limit: 32768 KB The Company Dynamic Rankings has ...

  7. ZOJ -2112 Dynamic Rankings 主席树 待修改的区间第K大

    Dynamic Rankings 带修改的区间第K大其实就是先和静态区间第K大的操作一样.先建立一颗主席树, 然后再在树状数组的每一个节点开线段树(其实也是主席树,共用节点), 每次修改的时候都按照树 ...

  8. zoj 2112 Dynamic Rankings 动态第k大 线段树套Treap

    Dynamic Rankings Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.zju.edu.cn/onlinejudge/show ...

  9. 高级数据结构(树状数组套主席树):ZOJ 2112 Dynamic Rankings

    Dynamic Rankings Time Limit: 10 Seconds      Memory Limit: 32768 KB The Company Dynamic Rankings has ...

  10. ZOJ 2112 Dynamic Rankings (动态第 K 大)(树状数组套主席树)

    Dynamic Rankings Time Limit: 10 Seconds      Memory Limit: 32768 KB The Company Dynamic Rankings has ...

随机推荐

  1. sendmessage和postmessage的区别

    BOOL   PostMessage(          HWND   hWnd,             //   handle   of   destination   window        ...

  2. 完成《Java编程入门》初稿

    Java编程入门 现在的运维工程师不但要懂得集合网络.系统管理而且要和开发人员一起调试系统,社会上也需要"复合性"的运维人员,所以需要做运维的也要懂一些开发,知道软件系统接口的调试 ...

  3. PfSense基于BSD的软件防火墙的安装、配置与应用

    PfSense基于BSD的软件防火墙的安装.配置与应用 PfSense是一个FreeBSD下的免费开源的防火墙和路由器软件,他为了在X86平台上面建立一个高集成性的防火墙项目,下面就为大家展示如何配置 ...

  4. PAT1023. Have Fun with Numbers

    //水题,但是考点不水,可能用的strlen属于string库,但是只能用于字符,不能用数字,因为\0就是0.出现0无法判断,其次二倍时有可能有进位 //第一次在二倍进位上出了问题 #include& ...

  5. AX 条码打印

    AX 条码打印集成在BarCode类及其之类barcode*. 由子类的defaultFont方法指定字体属性. eg, BarcodeCode39 指定条码字体"BC C39 3 to 1 ...

  6. 按照 where id in ()排序

    select * from ibs6_terminal_adv_inf where id in (16,14,15) order by find_in_set(id,'16,14,15')

  7. 017Makefile工程管理

    1.为什么需要Makefile? 利用Makefile和make的合作,可以把很多很多的工作合并成一个非常简单的命令:make: make能够使整个程序的编译.链接只需要一个命令(make)就可以完成 ...

  8. 【UEditor】远程上传图片到【七牛云存储】

    杂谈:最近在玩一个第三方的微信开发平台,里面的图片都是上传到[七牛云存储]的,用了一下非常的好用,支持各种语言,SDK齐全.支持全分布式系统架构以及存储技术和数据加速,于是决定将网站的图片都存储到七牛 ...

  9. 控制不能离开Finally子句主体

    1.在try{}catch{}finally{}的结构中不可以将返回语句放置在finally的主体当中2.如果在catch{}中有向上一级从新抛出异常操作,在finally{}之后的语句将不会执行 3 ...

  10. Like ruby of SBM Crusher zip to dict

    how to use the zip to bulid a dict in python? data = """A dynamic, interpreted, open ...