嘟嘟嘟




一句话题意:带修改区间第\(k\)小。




不修改都会,主席树板子。但是有修改就要比较深入的理解主席树了。

众所周知,主席树中以\(i\)为根的线段树维护的是\([1, i]\)这个前缀的权值,因此若修改一个点\(a[x]\),必须把\([x, n]\)的线段树全修改了,单次修改复杂度为\(O(n \log{n})\),显然承受不起。




通过上面的分析,我们发现前缀和是不能修改的,因此对于每一棵线段树,我们应该去维护别的数据结构,且这个数据结构支持单点修改,区间询问。

没错,到这谁都能猜出来了:树状数组。也就是说,对于以\(i\)为根的线段树,他维护的是\([i, i + lowbit(i))\)这个区间的权值。

这样修改的复杂度就降低了不少:每一次只修改从\(x\)往后跳\(lowbit\)直到\(n\)的这些线段树,最多有\(\log{n}\)棵,因此单次修改复杂度为\(O(\log ^ 2{n})\)。

对于询问。原来的主席树是前缀和相减。因此这里也一样:我们先不断往前跳\(lowbit\),找到\(L - 1\)和\(R\)的前缀和,然后在递归的每一层都用\(O(\log{n})\)的时间去求当前左子树的和,然后和\(k\)比较,决定进入哪一棵子树。




别忘了空间复杂度也是\(O(n \log ^ 2{n})\)的,又因为我的线段树的值域是\(1e9\),所以得开到\(3e7\)才行。

#include<cstdio>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<cctype>
#include<vector>
#include<stack>
#include<queue>
using namespace std;
#define enter puts("")
#define space putchar(' ')
#define Mem(a, x) memset(a, x, sizeof(a))
#define rg register
typedef long long ll;
typedef double db;
const int INF = 0x3f3f3f3f;
const db eps = 1e-8;
const int maxn = 1e5 + 5;
const int maxt = 3e7 + 5;
const int Max = 1e9;
inline ll read()
{
ll ans = 0;
char ch = getchar(), last = ' ';
while(!isdigit(ch)) last = ch, ch = getchar();
while(isdigit(ch)) ans = (ans << 1) + (ans << 3) + ch - '0', ch = getchar();
if(last == '-') ans = -ans;
return ans;
}
inline void write(ll x)
{
if(x < 0) x = -x, putchar('-');
if(x >= 10) write(x / 10);
putchar(x % 10 + '0');
} int n, m, a[maxn];
char tp[2];
int root[maxn], ls[maxt], rs[maxt], c[maxt], cnt = 0; int lowbit(int x)
{
return x & -x;
} void update(int& now, int l, int r, int id, int d)
{
if(!now) now = ++cnt;
c[now] += d;
if(l == r) return;
int mid = (l + r) >> 1;
if(id <= mid) update(ls[now], l, mid, id, d);
else update(rs[now], mid + 1, r, id, d);
} void change(int id, int d)
{
for(int i = id; i <= n; i += lowbit(i)) update(root[i], 1, Max, a[id], -1);
a[id] = d;
for(int i = id; i <= n; i += lowbit(i)) update(root[i], 1, Max, a[id], 1);
} int t1[35], t2[35], cnt1 = 0, cnt2 = 0;
int query(int l, int r, int k)
{
if(l == r) return l;
int sum = 0, mid = (l + r) >> 1;
for(int i = 1; i <= cnt1; ++i) sum -= c[ls[t1[i]]];
for(int i = 1; i <= cnt2; ++i) sum += c[ls[t2[i]]];
if(k <= sum)
{
for(int i = 1; i <= cnt1; ++i) t1[i] = ls[t1[i]];
for(int i = 1; i <= cnt2; ++i) t2[i] = ls[t2[i]];
return query(l, mid, k);
}
else
{
for(int i = 1; i <= cnt1; ++i) t1[i] = rs[t1[i]];
for(int i = 1; i <= cnt2; ++i) t2[i] = rs[t2[i]];
return query(mid + 1, r, k - sum);
}
} int main()
{
n = read(); m = read();
for(int i = 1; i <= n; ++i)
{
a[i] = read();
for(int j = i; j <= n; j += lowbit(j)) update(root[j], 1, Max, a[i], 1);
}
for(int i = 1; i <= m; ++i)
{
scanf("%s", tp);
if(tp[0] == 'C')
{
int x = read(), d = read();
change(x, d);
}
else
{
int L = read(), R = read(), k = read();
cnt1 = cnt2 = 0;
for(int j = L - 1; j; j -= lowbit(j)) t1[++cnt1] = root[j];
for(int j = R; j; j -= lowbit(j)) t2[++cnt2] = root[j];
write(query(1, Max, k)), enter;
}
}
}

luogu P2617 Dynamic Rankings(主席树)的更多相关文章

  1. 洛谷P2617 Dynamic Rankings (主席树)

    洛谷P2617 Dynamic Rankings 题目描述 给定一个含有n个数的序列a[1],a[2],a[3]--a[n],程序必须回答这样的询问:对于给定的i,j,k,在a[i],a[i+1],a ...

  2. 洛谷P2617 Dynamic Rankings 主席树 单点修改 区间查询第 K 大

    我们将线段树套在树状数组上,查询前预处理出所有要一起移动的节点编号,并在查询过程中一起将这些节点移到左右子树上. Code: #include<cstdio> #include<cs ...

  3. P2617 Dynamic Rankings(树状数组套主席树)

    P2617 Dynamic Rankings 单点修改,区间查询第k大 当然是无脑树套树了~ 树状数组套主席树就好辣 #include<iostream> #include<cstd ...

  4. LUOGU P2617 Dynamic Rankings(树状数组套主席树)

    传送门 解题思路 动态区间第\(k\)大,树状数组套主席树模板.树状数组的每个位置的意思的是每棵主席树的根,维护的是一个前缀和.然后询问的时候\(log\)个点一起做前缀和,一起移动.时空复杂度\(O ...

  5. [luogu P2617] Dynamic Rankings 带修主席树

    带修改的主席树,其实这种,已经不能算作主席树了,因为这个没有维护可持久化的... 主席树直接带修改的话,由于这种数据结构是可持久化的,那么要相应改动,这个节点以后所有的主席树,这样单次修改,就达到n* ...

  6. Bzoj 1901: Zju2112 Dynamic Rankings 主席树,可持久,树状数组,离散化

    1901: Zju2112 Dynamic Rankings Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 6321  Solved: 2628[Su ...

  7. zoj 2112 Dynamic Rankings(主席树&amp;动态第k大)

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

  8. bzoj 1901: Zju2112 Dynamic Rankings -- 主席树,树状数组,哈希

    1901: Zju2112 Dynamic Rankings Time Limit: 10 Sec  Memory Limit: 128 MB Description 给定一个含有n个数的序列a[1] ...

  9. 【BZOJ1901】Zju2112 Dynamic Rankings 主席树+树状数组

    [BZOJ1901]Zju2112 Dynamic Rankings Description 给定一个含有n个数的序列a[1],a[2],a[3]……a[n],程序必须回答这样的询问:对于给定的i,j ...

随机推荐

  1. 【转】Dubbo声明式缓存

    缓存的应用非常广泛,为了提高数据访问的速度.Dubbo也不例外,它提供了声明式缓存,以减少用户加缓存的工作量. 一.Dubbo中缓存策略 lru 基于最近最少使用原则删除多余缓存,保持最热的数据被缓存 ...

  2. Yii 之components

    当我们创建一个module的时候,对应的path alias就已经创建.比如我们定义了一个module: www 1 2 3 4 5 'modules'=>array(     'www'=&g ...

  3. gulp入门实践

    前言:大家可能都听说过gulp,知道它是一种前端自动化开发工具,可以用来文件压缩.语法检查.文件合并和编译less等,但可能并不知道要怎么用?看过官方文档,也看过许多博客,但基本都是讲gulp的API ...

  4. Spring Boot—21Actuator--监控

    https://docs.spring.io/spring-boot/docs/2.0.1.RELEASE/reference/htmlsingle/ pom.xml <dependency&g ...

  5. 润乾报表新功能–导出excel支持锁定表头

     在以往的报表设计中,锁定表头是会经常被用到的一个功能,这个功能不仅能使浏览的页面更加直观,信息对应的更加准确,而且也提高了报表的美观程度.但是,很多客户在将这样的报表导出excel时发现exce ...

  6. 带你从零学ReactNative开发跨平台App开发(十一)

    ReactNative跨平台开发系列教程: 带你从零学ReactNative开发跨平台App开发(一) 带你从零学ReactNative开发跨平台App开发(二) 带你从零学ReactNative开发 ...

  7. C#Owin auth20开发 OwinStartup 不会触发的解决办法

    在使用owin auth20设置token时候遇到一个问题.项目中已经存在如下初始化配置类 using Microsoft.Owin; using Owin; [assembly: OwinStart ...

  8. web项目启动时,自动执行代码的几种方式

    在项目开发过程中,往往需要一些功能随着项目启动而优先启动,下面我总结几种方式(非spring boot) spring boot的参考 spring boot 学习之路9 (项目启动后就执行特定方法) ...

  9. c# 多线程之-- System.Threading Timer的使用

    作用:每隔多久去执行线程里的方法. class ThreadTimerDemo { static void Main(string[] args) { // Create an AutoResetEv ...

  10. 梯度下降法实现最简单线性回归问题python实现

    梯度下降法是非常常见的优化方法,在神经网络的深度学习中更是必会方法,但是直接从深度学习去实现,会比较复杂.本文试图使用梯度下降来优化最简单的LSR线性回归问题,作为进一步学习的基础. import n ...