bzoj1803: Spoj1487 Query on a tree III(DFS序+主席樹)
題目傳送門
題意:
求子樹第k小。
解法:
求子樹啊。
那麼肯定DFS序啊。
因為DFS序子樹肯定是連續的。
這樣可以用主席樹來維護咯。
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
using namespace std;
struct trnode {int c,lc,rc;}t[2100000];int cnt,rt[110000];
int A[110000],B[110000],n,sy[110000];
bool cmp(int a,int b) {return A[a]<A[b];}
void build(int &u,int l,int r,int p) {
if(u==0)u=++cnt;
t[u].c++;int mid=(l+r)/2;
if(l==r)return ;
if(p<=mid)build(t[u].lc,l,mid,p);
else build(t[u].rc,mid+1,r,p);
}
void Merge(int &u1,int u2) {
if(u1==0) {u1=u2;return ;}
if(u2==0) return ;
t[u1].c+=t[u2].c;
Merge(t[u1].lc,t[u2].lc);Merge(t[u1].rc,t[u2].rc);
}
struct node {int x,y,next;}a[210000];int len,last[110000];
void ins(int x,int y) {len++;a[len].x=x;a[len].y=y;a[len].next=last[x];last[x]=len;}
int z,st[110000],ed[110000],ys[110000];
void dfs(int x,int fa) {
st[x]=++z;ys[z]=x;
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;if(y!=fa)dfs(y,x);
}
ed[x]=z;
}
int find(int u1,int u2,int l,int r,int k) {
if(l==r)return B[l];
int c=t[t[u1].lc].c-t[t[u2].lc].c,mid=(l+r)/2;
if(c>=k)return find(t[u1].lc,t[u2].lc,l,mid,k);
else return find(t[u1].rc,t[u2].rc,mid+1,r,k-c);
}
int main() {
//freopen("QTREE0.in","r",stdin);
scanf("%d",&n);cnt=0;memset(rt,0,sizeof(rt));
for(int i=1;i<=n;i++) {scanf("%d",&A[i]);B[i]=i;}
len=0;memset(last,0,sizeof(last));
for(int i=1;i<n;i++) {int x,y;scanf("%d%d",&x,&y);ins(x,y);ins(y,x);}
z=0;dfs(1,0);sort(B+1,B+1+n,cmp);for(int i=1;i<=n;i++)sy[B[i]]=i;
for(int i=1;i<=n;i++) {
build(rt[i],1,n,sy[ys[i]]);Merge(rt[i],rt[i-1]);
}int m;scanf("%d",&m);
for(int i=1;i<=m;i++) {
int x,k;scanf("%d%d",&x,&k);
printf("%d\n",find(rt[ed[x]],rt[st[x]-1],1,n,k));
}
return 0;
}
相關文章
- bzoj2809: [Apio2012]dispatching(DFS序+主席樹)API
- bzoj3439: Kpm的MC密碼(主席樹+DFS序+字典樹)密碼
- D-query SPOJ - DQUERY (主席樹)
- 樹的DFS序
- bzoj1146: [CTSC2008]網路管理Network(dfs序+主席樹+樹狀陣列)陣列
- Codefroces 1328E Tree Querie(dfs序)
- bzoj2588: Spoj 10628. Count on a tree(主席樹+LCA)
- dfs序
- 主席樹
- DFS樹
- 主席樹模板
- 從 dfs 序求 lca 到虛樹到樹分塊 學習筆記筆記
- LeetCode#110.Balanced Binary Tree(Tree/Height/DFS/Recursion)LeetCode
- The order of a Tree (二叉搜尋樹+先序遍歷)
- DFS序例題+感受
- 靜態主席樹模板
- 動態主席樹模板
- LeetCode C++ 968. Binary Tree Cameras【Tree/DFS】困難LeetCodeC++
- hdu 6446 Tree and Permutation(dfs+思維)
- 【演算法】二叉樹、N叉樹先序、中序、後序、BFS、DFS遍歷的遞迴和迭代實現記錄(Java版)演算法二叉樹遞迴Java
- HDU2665 Kth number【主席樹】
- HDU4417 Super Mario【主席樹】
- BZOJ4299: Codechef FRBSUM(主席樹)
- 【資料結構】淺談主席樹資料結構
- 求樹的直徑(BFS/DFS)
- 迴歸樹(Regression Tree)
- Segment Tree(線段樹)
- Decision tree——決策樹
- 決策樹(Decision Tree)
- 洛谷P4197 Peaks(Kruskal重構樹 主席樹)
- 劍指 Offer 32 - III. 從上到下列印二叉樹 III二叉樹
- 樹的DFS序列,時間戳,樹的深度,重心時間戳
- 多路查詢樹:B-tree/b+tree
- bzoj3524: [Poi2014]Couriers(主席樹)
- HDU-4348 - To the moon (主席樹+區間修改)
- 【主席數】可持續化線段樹
- SDOI2018 原題識別(主席樹)
- LeetCode C++ 1302. Deepest Leaves Sum【Tree/BFS/DFS】中等LeetCodeC++