博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
BZOJ 2588: Spoj 10628. Count on a tree 树上跑主席树
阅读量:5317 次
发布时间:2019-06-14

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

 

2588: Spoj 10628. Count on a tree

Time Limit: 1 Sec  

Memory Limit: 256 MB

题目连接

http://www.lydsy.com/JudgeOnline/problem.php?id=2588

Description

给定一棵N个节点的树,每个点有一个权值,对于M个询问(u,v,k),你需要回答u xor lastans和v这两个节点间第K小的点权。其中lastans是上一个询问的答案,初始为0,即第一个询问的u是明文。

Input

第一行两个整数N,M。
第二行有N个整数,其中第i个整数表示点i的权值。
后面N-1行每行两个整数(x,y),表示点x到点y有一条边。
最后M行每行两个整数(u,v,k),表示一组询问。
 

Output

 
M行,表示每个询问的答案。

Sample Input

8 5 105 2 9 3 8 5 7 7 1 2 1 3 1 4 3 5 3 6 3 7 4 8 2 5 1 0 5 2 10 5 3 11 5 4 110 8 2

Sample Output

2 8 9 105 7

HINT

 
HINT:
N,M<=100000
暴力自重。。。

题意

 

题解:

树上跑主席树

这类题都是这样搞……

代码来自hzwer:

代码:

//qscqesze#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
typedef long long ll;using namespace std;//freopen("D.in","r",stdin);//freopen("D.out","w",stdout);#define sspeed ios_base::sync_with_stdio(0);cin.tie(0)#define maxn 2000005#define eps 1e-9int Num;//const int inf=0x7fffffff; //§ß§é§à§é¨f§3const int inf=0x3f3f3f3f;inline ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){ if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f;}//**************************************************************************************#define N 100005#define M 2000005int n,m,tot,sz,cnt,ind,last;int num[N],pos[N];int v[N],tmp[N],hash[N],root[N];int ls[M],rs[M],sum[M];int deep[N],fa[N][17];struct data{ int to,next;}e[200005];int head[N];void ins(int u,int v){e[++cnt].to=v;e[cnt].next=head[u];head[u]=cnt;}void insert(int u,int v){ins(u,v);ins(v,u);}int find(int x)//二分{ int l=1,r=tot; while(l<=r) { int mid=(l+r)>>1; if(hash[mid]
=0;i--) if(fa[x][i]!=fa[y][i]) x=fa[x][i],y=fa[y][i]; if(x==y)return x; return fa[x][0];}void update(int l,int r,int x,int &y,int num)//更新{ y=++sz; sum[y]=sum[x]+1; if(l==r)return; ls[y]=ls[x];rs[y]=rs[x]; int mid=(l+r)>>1; if(num<=mid) update(l,mid,ls[x],ls[y],num); else update(mid+1,r,rs[x],rs[y],num);}int que(int x,int y,int rk){ int a=x,b=y,c=lca(x,y),d=fa[c][0]; a=root[pos[a]],b=root[pos[b]],c=root[pos[c]],d=root[pos[d]]; int l=1,r=tot; while(l
>1; int tmp=sum[ls[a]]+sum[ls[b]]-sum[ls[c]]-sum[ls[d]]; if(tmp>=rk)r=mid,a=ls[a],b=ls[b],c=ls[c],d=ls[d]; else rk-=tmp,l=mid+1,a=rs[a],b=rs[b],c=rs[c],d=rs[d]; } return hash[l];}int main(){ //freopen("test.txt","r",stdin); n=read(),m=read(); for(int i=1;i<=n;i++) v[i]=read(),tmp[i]=v[i]; sort(tmp+1,tmp+n+1); hash[++tot]=tmp[1]; for(int i=2;i<=n;i++) if(tmp[i]!=tmp[i-1])hash[++tot]=tmp[i]; for(int i=1;i<=n;i++)v[i]=find(v[i]); for(int i=1;i

 

转载于:https://www.cnblogs.com/qscqesze/p/4785256.html

你可能感兴趣的文章
微软职位内部推荐-SENIOR SOFTWARE ENGINEER
查看>>
Redis系统性介绍
查看>>
(备忘)打开office2010总是在配置进度
查看>>
jquery中的ajax方法(备忘)
查看>>
iOS基础-高级视图-UITableView--静态单元格
查看>>
打印图片的属性和实现另存图片功能以及使用numpy
查看>>
IOS-网络(大文件下载)
查看>>
基于MySQL的高可用可扩展架构探讨
查看>>
linux系统服务设置命令--chkconfig命令参数及用法详解
查看>>
0714M
查看>>
动态加载vs静态加载
查看>>
ajax跨域请求的问题
查看>>
(7)关于margin的一些想法2.0
查看>>
GDB调试qemu-kvm
查看>>
使用qrcode类制作二维码
查看>>
wp7 blogs
查看>>
营业额统计
查看>>
代码Review发现问题
查看>>
Xcode命令行生成Bitcode静态库
查看>>
Nim教程【十二】
查看>>