记录编号 431321 评测结果 TTTTTTAATT
题目名称 动态排名系统 最终得分 20
用户昵称 GravatarCooook 是否通过 未通过
代码语言 C++ 运行时间 40.003 s
提交时间 2017-07-31 16:21:47 内存使用 100.05 MiB
显示代码纯文本
  1. #include <stdio.h>
  2. #include <cstring>
  3. #include <algorithm>
  4. #define fast __attribute__((optimize("-O3")))
  5. using namespace std;
  6. const int MAXN = 50005*2;
  7. int cnt=0,use[MAXN],root[MAXN],sz,hhhh[MAXN],a[MAXN],n,T,m,num,S[MAXN];
  8. char buf[MAXN*50],*ptr=buf-1;
  9.  
  10. template<typename _t>
  11. fast inline _t read(){
  12. _t x = 0, f = 1, c = *++ptr;
  13. while (c < 48)c == '-' && (f = -1), c = *++ptr;
  14. while (c > 47)x = x * 10 + c - 48, c = *++ptr;
  15. return x * f;
  16. }
  17. struct node{int l,r,sum;}tree[MAXN*80];
  18. fast void insert(int &o,int old,int l,int r,int x,int val){
  19. o=++cnt;
  20. tree[o]=tree[old];
  21. tree[o].sum+=val;
  22. if(l==r)return;
  23. int m=l+r>>1;
  24. if(x<=m)insert(tree[o].l,tree[old].l,l,m,x,val);
  25. else insert(tree[o].r,tree[old].r,m+1,r,x,val);
  26. return;
  27. }
  28. fast inline int lowbit(int x){return (x)&(-x);}
  29. fast inline void add(int x,int pos,int val){for(;x<=n;x+=lowbit(x))insert(S[x],S[x],1,sz,pos,val);}
  30. fast void build(int &o,int l,int r){
  31. o=++cnt;
  32. tree[o].sum=0;
  33. if(l==r)return;
  34. int m=l+r>>1;
  35. build(tree[o].l,l,m);
  36. build(tree[o].r,m+1,r);
  37. }
  38. fast inline int qsum(int x){
  39. int ans=0;
  40. for(;x;x-=lowbit(x))ans+=tree[tree[use[x]].l].sum;
  41. return ans;
  42. }
  43. fast int query(int l,int r,int k){
  44. for(int i=l-1;i;i-=lowbit(i))use[i]=S[i];
  45. for(int i=r;i;i-=lowbit(i))use[i]=S[i];
  46. int L=1,R=sz,lrt=root[l-1],rrt=root[r];
  47. while(L<R){
  48. int tmp = qsum(r)-qsum(l-1)+tree[tree[rrt].l].sum-tree[tree[lrt].l].sum;
  49. int m=L+R>>1;
  50. if(tmp>=k){
  51. for(int i=l-1;i;i-=lowbit(i))use[i]=tree[use[i]].l;
  52. for(int i=r;i;i-=lowbit(i))use[i]=tree[use[i]].l;
  53. lrt=tree[lrt].l;rrt=tree[rrt].l;
  54. R=m;
  55. }
  56. else{
  57. for(int i=l-1;i;i-=lowbit(i))use[i]=tree[use[i]].r;
  58. for(int i=r;i;i-=lowbit(i))use[i]=tree[use[i]].r;
  59. lrt=tree[lrt].r;rrt=tree[rrt].r;
  60. L=m+1;k-=tmp;
  61. }
  62. }
  63. return L;
  64. }
  65. fast inline int Init(){sort(&hhhh[1],&hhhh[num+1]);sz=unique(&hhhh[1],&hhhh[num+1])-hhhh-1;}
  66. fast inline int Hash(int x){return lower_bound(&hhhh[1],&hhhh[sz+1],x)-hhhh;}
  67. struct operation{int l,r,op,k;}op[MAXN];
  68. int main(){
  69. freopen("dynrank.in","r",stdin);
  70. freopen("dynrank.out","w",stdout);
  71. fread(buf,1,sizeof buf,stdin);
  72. T=read<int>();
  73. while(T--){
  74. cnt=0;num=0;
  75. n=read<int>();m=read<int>();
  76. for(int i=1;i<=n;i++)a[i]=read<int>(),hhhh[++num]=a[i];
  77. for(int i=1;i<=m;i++){
  78. char ch=getchar();
  79. for(;ch!='Q'&&ch!='C';ch=getchar());
  80. op[i].op=(ch=='Q');
  81. op[i].l=read<int>();
  82. op[i].r=read<int>();
  83. if(ch=='Q')op[i].k=read<int>();
  84. else hhhh[++num]=op[i].r;
  85. }
  86. Init();
  87. build(root[0],1,sz);
  88. for(int i=1;i<=n;i++)insert(root[i],root[i-1],1,sz,Hash(a[i]),1);
  89. for(int i=1;i<=n;i++)S[i]=root[0];
  90. for(int o=1;o<=m;o++){
  91. if(op[o].op==0){
  92. add(op[o].l,Hash(a[op[o].l]),-1);
  93. add(op[o].l,Hash(op[o].r),1);
  94. a[op[o].l]=op[o].r;
  95. }
  96. else printf("%d\n",hhhh[query(op[o].l,op[o].r,op[o].k)]);
  97. }
  98. }
  99. }