定一个含有n个数的序列a[1],a[2],a[3]……a[n],程序必须回答这样的询问:对于给定的i,j,k,在a[i],a[i+1],a[i+2]……a[j]中第k小的数是多少(1≤k≤j-i+1),并且,你可以改变一些a[i]的值,改变后,程序还能针对改变后的a继续回答上面的问题。你需要编一个这样的程序,从输入文件中读入序列a,然后读入一系列的指令,包括询问指令和修改指令。对于每一个询问指令,你必须输出正确的回答。 第一行有两个正整数n(1≤n≤10000),m(1≤m≤10000)。分别表示序列的长度和指令的个数。第二行有n个数,表示a[1],a[2]……a[n],这些数都小于10^9。接下来的m行描述每条指令,每行的格式是下面两种格式中的一种。 Q i j k 或者 C i t Q i j k (i,j,k是数字,1≤i≤j≤n, 1≤k≤j-i+1)表示询问指令,询问a[i],a[i+1]……a[j]中第k小的数。C i t (1≤i≤n,0≤t≤10^9)表示把a[i]改变成为t。

写了一个树状数组套主席树的做法 nlog^2n, 还有一个节省空间但是耗时间的算法是线段树套平衡树,nlog^3n

沉迷数据结构

#include<iostream>
#include<cstdio>
#include<algorithm>
#define MN 2000000
#define MM 10000
using namespace std;
inline int read()
{
int x = , f = ; char ch = getchar();
while(ch < '' || ch > ''){ if(ch == '-') f = -; ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return x * f;
}
char op[];
int rt[MM*+],n,m,cnt,tot,l2[MM*+],s[MM+],c[],cnum,b[],bnum;
struct Segment_Tree{
int l,r,x;
}T[MN+];
struct ques{
int kind,l,r,v;
}q[MM+]; void ins(int x,int v,int ad,int l=,int r=tot)
{
T[x].x+=ad;
if(l==r) return;
int mid=l+r>>;
if(v<=mid) ins(T[x].l?T[x].l:(T[x].l=++cnt),v,ad,l,mid);
else ins(T[x].r?T[x].r:(T[x].r=++cnt),v,ad,mid+,r);
} void renew(int x,int v,int ad)
{
for(;x<=tot;x+=x&(-x))
ins(rt[x],v,ad);
} int main()
{
tot=n=read();m=read();
for(int i=;i<=n;i++) l2[i]=s[i]=read();
for(int i=;i<=m;i++)
{
scanf("%s",op);q[i].l=read();
q[i].r=read();
if(op[]=='Q') q[i].kind=,q[i].v=read();
else q[i].kind=,l2[++tot]=q[i].r;
}
sort(l2+,l2+tot+);
for(int i=;i<=tot;i++) rt[i]=i;cnt=tot;
for(int i=;i<=n;i++)
{
s[i]=lower_bound(l2+,l2+tot+,s[i])-l2;
renew(i,s[i],);
}
for(int i=;i<=m;i++)
{
if(q[i].kind==)
{
q[i].r=lower_bound(l2+,l2+tot+,q[i].r)-l2;
renew(q[i].l,s[q[i].l],-);
renew(q[i].l,q[i].r,);
s[q[i].l]=q[i].r;
}
else
{
int l=,r=tot,mid;cnum=bnum=;
for(int j=q[i].r;j;j-=j&(-j))c[++cnum]=rt[j];
for(int j=q[i].l-;j;j-=j&(-j)) b[++bnum]=rt[j];
while(l<=r)
{
mid=l+r>>;int x=;
for(int j=;j<=cnum;j++) x+=T[T[c[j]].l].x;
for(int j=;j<=bnum;j++) x-=T[T[b[j]].l].x;
if(x>=q[i].v)
{
r=mid;
for(int j=;j<=cnum;j++) c[j]=T[c[j]].l;
for(int j=;j<=bnum;j++) b[j]=T[b[j]].l;
}
else
{
l=mid+;q[i].v-=x;
for(int j=;j<=cnum;j++) c[j]=T[c[j]].r;
for(int j=;j<=bnum;j++) b[j]=T[b[j]].r;
}
}
printf("%d\n",l2[r]);
}
}
return ;
}

线段树套平衡树  结果我一不小心写成了树状数组  空间nlogn 时间nlog^3n

一开始把重建操作注释掉了交上去居然也过了,BST最棒啦,垃圾替罪羊

#include<iostream>
#include<cstdio>
#include<algorithm>
#define MN 400000
#define MM 10000
using namespace std;
inline int read()
{
int x = , f = ; char ch = getchar();
while(ch < '' || ch > ''){ if(ch == '-') f = -; ch = getchar();}
while(ch >= '' && ch <= ''){x = x * + ch - '';ch = getchar();}
return x * f;
}
char op[];
int rt[MM*+],n,m,cnt,mark=,tot,top=,l2[MM*+],s[MM+];
int c[MN+][],size[MN+],num[MN+],nn[MN+],fa[MN+],qx[MN+];
struct ques{
int kind,l,r,v;
}q[MM+]; void ins(int&x,int v,int ad,int last)
{
//cout<<"ins"<<x<<" "<<v<<" "<<ad<<" "<<last<<endl;
if(!x){x=++cnt;nn[x]=v;num[x]=;size[x]=;fa[x]=last;return;}
if(v==nn[x]){num[x]+=ad;size[x]+=ad;return;}
if(v<nn[x]) ins(c[x][],v,ad,x);
else ins(c[x][],v,ad,x);
size[x]=size[c[x][]]+size[c[x][]]+num[x];
if(max(size[c[x][]],size[c[x][]])>=0.7*size[x]) mark=x;
} void dfs(int x)
{
if(c[x][]) dfs(c[x][]);
if(num[x])qx[++top]=x;
if(c[x][]) dfs(c[x][]);
fa[x]=c[x][]=c[x][]=;
} void build(int&x,int l,int r,int last)
{
if(l>r) {x=;return;}int mid=l+r>>;
x=qx[mid];fa[x]=last;
build(c[x][],l,mid-,x);
build(c[x][],mid+,r,x);
size[x]=size[c[x][]]+size[c[x][]]+num[x];
} void rebuild(int i)
{
top=;int y=fa[mark];dfs(mark);
if(!y) build(rt[i],,top,);
else build(c[y][c[y][]==mark],,top,y);
mark=;
} void renew(int x,int v,int ad)
{
for(;x<=tot;x+=x&(-x))
{
ins(rt[x],v,ad,);
if(mark) rebuild(x);
}
} int query(int x,int k)
{
if(!x) return ;
if(nn[x]>=k) return query(c[x][],k)+((nn[x]==k)?num[x]:);
else return size[c[x][]]+num[x]+query(c[x][],k);
} int check(int x,int v)
{
int sum=;
for(;x;x-=x&(-x))
sum+=query(rt[x],v);
return sum;
} int main()
{
tot=n=read();m=read();
for(int i=;i<=n;i++) l2[i]=s[i]=read();
for(int i=;i<=m;i++)
{
scanf("%s",op);q[i].l=read();
q[i].r=read();
if(op[]=='Q') q[i].kind=,q[i].v=read();
else q[i].kind=,l2[++tot]=q[i].r;
}
sort(l2+,l2+tot+);
for(int i=;i<=n;i++)
{
s[i]=lower_bound(l2+,l2+tot+,s[i])-l2;
renew(i,s[i],);
}
for(int i=;i<=m;i++)
{
if(q[i].kind==)
{
q[i].r=lower_bound(l2+,l2+tot+,q[i].r)-l2;
renew(q[i].l,s[q[i].l],-);
renew(q[i].l,q[i].r,);
s[q[i].l]=q[i].r;
}
else
{
int l=,r=tot,mid,ans=;
while(l<=r)
{
mid=l+r>>;
int x=check(q[i].r,mid)-check(q[i].l-,mid);
//cout<<l2[mid]<<" "<<check(q[i].r,mid)<<" "<<check(q[i].l-1,mid)<<endl;
if(x>=q[i].v) ans=mid,r=mid-;
else l=mid+;
}
printf("%d\n",l2[ans]);
}
}
return ;
}

[bzoj1901]动态区间k大的更多相关文章

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

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

  2. ZOJ 2112 Dynamic Rankings (动态第k大,树状数组套主席树)

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

  3. poj2104 划分树 区间K大 在线 无修改

    博主sbit....对于高级数据结构深感无力,然后这些东西在OI竟然烂大街了,不搞就整个人都不好了呢. 于是我勇猛的跳进了这个大坑 ——sbit 区间K大的裸题,在线,无修改. 可以用归并树(\(O( ...

  4. zoj2112 主席树动态第k大 (主席树&&树状数组)

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

  5. POJ 2104 K-th Number ( 求取区间 K 大值 || 主席树 || 离线线段树)

    题意 : 给出一个含有 N 个数的序列,然后有 M 次问询,每次问询包含 ( L, R, K ) 要求你给出 L 到 R 这个区间的第 K 大是几 分析 : 求取区间 K 大值是个经典的问题,可以使用 ...

  6. 动态求区间K大值(权值线段树)

    我们知道我们可以通过主席树来维护静态区间第K大值.我们又知道主席树满足可加性,所以我们可以用树状数组来维护主席树,树状数组的每一个节点都可以开一颗主席树,然后一起做. 我们注意到树状数组的每一棵树都和 ...

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

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

  8. poj2104 主席树 区间K大 在线 无修改

    关于主席树: 主席树(Chairman Tree)是一种离线数据结构,使用函数式线段树维护每一时刻离散之后的数字出现的次数,由于各历史版本的线段树结构一致,可以相减得出区间信息,即该区间内出现的数字和 ...

  9. [BZOJ 1112] [POI2008] 砖块Klo 【区间K大】

    题目链接:BZOJ - 1112 题目分析 枚举每一个长度为k的连续区间,求出这个区间的最优答案,更新全局答案. 可以发现,这个区间的所有柱子最终都变成这k个数的中位数时最优,那么我们就需要查询这个区 ...

随机推荐

  1. Linux之用户与用户组

    1.Linux是一种 多用户多任务分时操作系统. 2.Linux的用户只有两个等级:root用户和非root用户.   Linux系统默认 内置了root用户 和一些非root用户,如nobody,a ...

  2. bzoj千题计划288:bzoj1876: [SDOI2009]SuperGCD

    http://www.lydsy.com/JudgeOnline/problem.php?id=1876 高精压位GCD 对于  GCD(a, b)  a>b 若 a 为奇数,b 为偶数,GCD ...

  3. vue style width a href动态拼接问题 ?

    style width 这个问题 折磨了我一个上午了  好惭愧 因为项目涉及到 进度条 所以必须用行内样式  style 用过vue的都知道 vue中style的用法 大众用法 :style=&quo ...

  4. HDFS的7个设计特点

    1.Block的放置:默认不配置.一个Block会有三份备份,一份放在NameNode指定的DataNode,另一份放在与指定DataNode非同一Rack上的DataNode,最后一份放在与指定Da ...

  5. Microsoft dynamic 批量更新

    //批量处理 ExecuteMultipleRequest multipleRequest = new ExecuteMultipleRequest() { Settings = new Execut ...

  6. 看漫画学Flux

    原文地址:A cartoon guide to Flux - by Lin Clark Flux在目前web开发中最受欢迎也较不被人理解,本文会以简单易懂的方式解释它. 出现问题 首先,我要声明Flu ...

  7. Python内置函数(9)——int

    英文文档: class int(x=0) class int(x, base=10) Return an integer object constructed from a number or str ...

  8. Angular 学习笔记 (路由外传 - RouteReuseStrategy)

    refer : https://github.com/angular/angular/issues/10929 https://stackoverflow.com/questions/41280471 ...

  9. 阿里云API网关(16)客户端请求的https支持

    网关指南: https://help.aliyun.com/document_detail/29487.html?spm=5176.doc48835.6.550.23Oqbl 网关控制台: https ...

  10. CentOS 7下安装Chrome浏览器

    1. cd /etc/yum.repos.d/ 2. vim google-chrome.repo 在该文件中输入: [google-chrome]name=google-chromebaseurl= ...