luogu 2617
动态区间 $k$ 大
主席树 + 树状数组
树状数组的每个点对应一颗线段树
首先将所有点加入数据结构
枚举 x
code: for(int i = x; i <= n; i += Lowbit(i)) Poi_G(root[i], 1, Length, k, val);
区间修改时
将所有的后缀树的相应位置 -1, 再 +1
主席树查询时
在计算区间和的时候
类似树状数组的查询
将用到的线段树的相应节点加或减
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <string> using namespace std; #define LL long long #define gc getchar()
inline int read() {int x = ; char c = gc; while(c < '' || c > '') c = gc;
while(c >= '' && c <= '') x = x * + c - '', c = gc; return x;}
inline LL read_LL() {LL x = ; char c = gc; while(c < '' || c > '') c = gc;
while(c >= '' && c <= '') x = x * + c - '', c = gc; return x;}
#undef gc const int N = 1e5 + ; struct Node {int opt, l, r, k;} Ask[N]; int n, m;
int A[N], Num[N << ], Length; int root[N], Lson[N * ], Rson[N * ], W[N * ];
int root_add[], root_cut[];
int jsadd, jscut; int Lowbit(int x) {return (x & (-x));} int Hjt; void Poi_G(int &rt, int l, int r, int k, int val) {
if(!rt) rt = ++ Hjt;
W[rt] += val;
if(l == r) return ;
int mid = (l + r) >> ;
if(k <= mid) Poi_G(Lson[rt], l, mid, k, val);
else Poi_G(Rson[rt], mid + , r, k, val);
} void Pre_Poi_G(int x, int val) {
int k = lower_bound(Num + , Num + Length + , A[x]) - Num;
for(int i = x; i <= n; i += Lowbit(i)) Poi_G(root[i], , Length, k, val);
} int Sec_A(int l, int r, int k) {
if(l == r) return l;
int sum = ;
for(int i = ; i <= jsadd; i ++) sum += W[Lson[root_add[i]]];
for(int i = ; i <= jscut; i ++) sum -= W[Lson[root_cut[i]]];
int mid = (l + r) >> ;
if(k <= sum) {
for(int i = ; i <= jsadd; i ++) root_add[i] = Lson[root_add[i]];
for(int i = ; i <= jscut; i ++) root_cut[i] = Lson[root_cut[i]];
return Sec_A(l, mid, k);
} else {
for(int i = ; i <= jsadd; i ++) root_add[i] = Rson[root_add[i]];
for(int i = ; i <= jscut; i ++) root_cut[i] = Rson[root_cut[i]];
return Sec_A(mid + , r, k - sum);
}
} int Pre_Sec_A(int l, int r, int k) {
memset(root_add, , sizeof root_add);
memset(root_add, , sizeof root_add);
jsadd = jscut = ;
for(int i = r; i; i -= Lowbit(i)) root_add[++ jsadd] = root[i];
for(int i = l - ; i; i -= Lowbit(i)) root_cut[++ jscut] = root[i];
return Sec_A(, Length, k);
} int main() {
n = read(), m = read();
for(int i = ; i <= n; i ++) A[i] = read(), Num[++ Length] = A[i];
for(int i = ; i <= m; i ++) {
char c[]; scanf("%s", c);
Ask[i].opt = (c[] == 'Q' ? : );
if(Ask[i].opt == ) Ask[i].l = read(), Ask[i].r = read(), Ask[i].k = read();
else {Ask[i].l = read(), Ask[i].k = read(), Num[++ Length] = Ask[i].k;}
}
sort(Num + , Num + Length + );
Length = unique(Num + , Num + Length + ) - Num - ;
for(int i = ; i <= n; i ++) Pre_Poi_G(i, );
for(int i = ; i <= m; i ++) {
if(Ask[i].opt == ) {
int Ans = Num[Pre_Sec_A(Ask[i].l, Ask[i].r, Ask[i].k)];
printf("%d\n", Ans);
} else {
Pre_Poi_G(Ask[i].l, -);
A[Ask[i].l] = Ask[i].k;
Pre_Poi_G(Ask[i].l, );
}
}
return ;
}
luogu 2617的更多相关文章
- Luogu Dynamic Ranking (带修改的主席树)
题目大意: 网址:https://www.luogu.org/problemnew/show/2617 给定一个序列a[1].a[2].....a[N],完成M个操作,操作有两种: [1]Q i j ...
- Luogu 魔法学院杯-第二弹(萌新的第一法blog)
虽然有点久远 还是放一下吧. 传送门:https://www.luogu.org/contest/show?tid=754 第一题 沉迷游戏,伤感情 #include <queue> ...
- luogu p1268 树的重量——构造,真正考验编程能力
题目链接:http://www.luogu.org/problem/show?pid=1268#sub -------- 这道题费了我不少心思= =其实思路和标称毫无差别,但是由于不习惯ACM风格的题 ...
- [luogu P2170] 选学霸(并查集+dp)
题目传送门:https://www.luogu.org/problem/show?pid=2170 题目描述 老师想从N名学生中选M人当学霸,但有K对人实力相当,如果实力相当的人中,一部分被选上,另一 ...
- [luogu P2647] 最大收益(贪心+dp)
题目传送门:https://www.luogu.org/problem/show?pid=2647 题目描述 现在你面前有n个物品,编号分别为1,2,3,--,n.你可以在这当中任意选择任意多个物品. ...
- YTU 2617: B C++时间类的运算符重载
2617: B C++时间类的运算符重载 时间限制: 1 Sec 内存限制: 128 MB 提交: 284 解决: 108 题目描述 C++时间类的运算符重载 定义一个时间类Time,其数据成员为 ...
- Luogu 考前模拟Round. 1
A.情书 题目:http://www.luogu.org/problem/show?pid=2264 赛中:sb题,直接暴力匹配就行了,注意一下读入和最后一句话的分句 赛后:卧槽 怎么只有40 B.小 ...
- luogu P2580 于是他错误的点名开始了
luogu P2580 于是他错误的点名开始了 https://www.luogu.org/problem/show?pid=2580 题目背景 XS中学化学竞赛组教练是一个酷爱炉石的人. 他会一边 ...
- CJOJ 1331 【HNOI2011】数学作业 / Luogu 3216 【HNOI2011】数学作业 / HYSBZ 2326 数学作业(递推,矩阵)
CJOJ 1331 [HNOI2011]数学作业 / Luogu 3216 [HNOI2011]数学作业 / HYSBZ 2326 数学作业(递推,矩阵) Description 小 C 数学成绩优异 ...
随机推荐
- eclise -The method onClick(View) of type new View.OnClickListener(){} must override a superclass method 在做arcgis android开发的时候,突然遇到这种错误,The method onClick(View) of type new View.OnClickListener(){} mus
eclise -The method onClick(View) of type new View.OnClickListener(){} must override a superclass met ...
- apply,call和bind的使用及区别
1.用途 1)apply,call和bind都是 用来改变this的指向 2)apply和call会让当前函数立即执行,而bind会返回一个函数,后续需要的时候再调用执行 2.this指向问题 thi ...
- collections.defaultdict()的使用
这里的defaultdict(function_factory)构建的是一个类似dictionary的对象,其中keys的值,自行确定赋值,但是values的类型,是function_factory的 ...
- VS.NET(C#)--1.3_VS2005开始
VS2005开始 开始页 1.文件系统:这是默认,把网站创建到当前物理文件系统上(可以本地或网络).此时VS2005将使用内置的Web服务器,不使用IIS运行Web应用程序.2.HTTP使用IIS处理 ...
- VBA Exit Do语句
当想要根据特定标准退出Do循环时,可使用Exit Do语句. 它可以同时用于Do...While和Do...Until直到循环. 当Exit Do被执行时,控制器在Do循环之后立即跳转到下一个语句. ...
- VBA循环(十一)
当需要多次执行一段代码时,就可以使用循环语句. 一般来说,语句是按顺序执行的:函数中的第一个语句首先执行,然后是第二个,依此类推. 编程语言提供了各种控制结构,允许更复杂的执行路径. 循环语句允许多次 ...
- iOS - 反射机制: objc_property_t的使用
iOS属性反射:说白了,就是将两个对象的所有属性,用动态的方式取出来,并根据属性名,自动绑值.(注意:对象的类,如果是派生类,就得靠其他方式来实现了,因为得到不该基类的属性.) 常用的反射方式,有如下 ...
- 采用localStorage做定时缓存
背景 页面采用ajax获取数据时,每访问一次就会发送一次请求向服务端获取数据,可是呢. 有些数据更新的又不频繁,所以我就想着使用localStorage进行本地存储,然后在固定间隔时在去更新数据.(下 ...
- vue实现一个评论列表
<!DOCTYPE html> <html> <head> <title>简易评论列表</title> <meta charset=& ...
- jQuery标签操作
样式操作 样式类操作 //添加指定的css类名 $('元素选择器')addClass('类名'); //移除指定的css类名 removeClass(); //判断样式存不存在 hasClass(); ...