博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2104 K-th Number 主席树
阅读量:4959 次
发布时间:2019-06-12

本文共 1495 字,大约阅读时间需要 4 分钟。

分析:以前是划分树,感觉难写又不好记(当然肯定是因为我弱),然后学习了主席树(主席树好写),

       我感觉CLJ神犇的论文就写的很好,其实就是若干棵权值线段树的建立,以及共用节点,同样的权值线段树是可以相加相减的

       反正高度仰慕

#include 
#include
#include
#include
using namespace std;const int N = 1e5+5;const int INF=0x3f3f3f3f;typedef unsigned long long ULL;typedef long long LL;int a[N],n,q;struct ZXTree{ struct Node{ int l,r,v; }o[N*25]; int sz,root[N],pos[N],c[N]; void update(int &rt,int l,int r,int x){ o[++sz]=o[rt],rt=sz; ++o[rt].v; if(l==r)return; int m=(l+r)>>1; if(x<=m)update(o[rt].l,l,m,x); else update(o[rt].r,m+1,r,x); } int query(int x,int y,int k){ int l=1,r=n; x=root[x-1],y=root[y]; while(l!=r){ int m=(l+r)>>1,t=o[o[y].l].v-o[o[x].l].v; if(k<=t) x=o[x].l,y=o[y].l,r=m; else x=o[x].r,y=o[y].r,l=m+1,k-=t; } return a[l]; } void init(){ root[0]=sz=0; for(int i=1;i<=n;++i) scanf("%d",&a[i]),c[i]=a[i]; sort(a+1,a+1+n); int cnt=1; for(int i=2;i<=n;++i) if(a[i]!=a[i-1])a[++cnt]=a[i]; for(int i=1;i<=n;++i) pos[i]=lower_bound(a+1,a+1+cnt,c[i])-a; for(int i=1;i<=n;++i) update(root[i]=root[i-1],1,n,pos[i]); }}solve; int main(){ scanf("%d%d",&n,&q); solve.init(); while(q--){ int x,y,k; scanf("%d%d%d",&x,&y,&k); printf("%d\n",solve.query(x,y,k)); } return 0;}
View Code

 

转载于:https://www.cnblogs.com/shuguangzw/p/5358898.html

你可能感兴趣的文章
委托的调用
查看>>
c#中从string数组转换到int数组
查看>>
数据模型(LP32 ILP32 LP64 LLP64 ILP64 )
查看>>
java小技巧
查看>>
POJ 3204 Ikki's Story I - Road Reconstruction
查看>>
【BZOJ】2959: 长跑(lct+缩点)(暂时弃坑)
查看>>
iOS 加载图片选择imageNamed 方法还是 imageWithContentsOfFile?
查看>>
toad for oracle中文显示乱码
查看>>
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>