HDU 2475 BOX 动态树 Link-Cut Tree 动态树模板

Box

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

【Problem Description】

There are N boxes on the ground, which are labeled by numbers from 1 to N. The boxes are magical, the size of each one can be enlarged or reduced arbitrarily. Jack can perform the “MOVE x y” operation to the boxes: take out box x; if y = 0, put it on the ground; Otherwise, put it inside box y. All the boxes inside box x remain the same. It is possible that an operation is illegal, that is, if box y is contained (directly or indirectly) by box x, or if y is equal to x. In the following picture, box 2 and 4 are directly inside box 6, box 3 is directly inside box 4, box 5 is directly inside box 1, box 1 and 6 are on the ground.

The picture below shows the state after Jack performs “MOVE 4 1”:

Then he performs “MOVE 3 0”, the state becomes:

During a sequence of MOVE operations, Jack wants to know the root box of a specified box. The root box of box x is defined as the most outside box which contains box x. In the last picture, the root box of box 5 is box 1, and box 3’s root box is itself.

【Input】

Input contains several test cases. For each test case, the first line has an integer N (1 <= N <= 50000), representing the number of boxes. Next line has N integers: a1, a2, a3, ... , aN (0 <= ai <= N), describing the initial state of the boxes. If ai is 0, box i is on the ground, it is not contained by any box; Otherwise, box i is directly inside box ai. It is guaranteed that the input state is always correct (No loop exists). Next line has an integer M (1 <= M <= 100000), representing the number of MOVE operations and queries. On the next M lines, each line contains a MOVE operation or a query:

1.  MOVE x y, 1 <= x <= N, 0 <= y <= N, which is described above. If an operation is illegal, just ignore it.

2.  QUERY x, 1 <= x <= N, output the root box of box x.

【Output】

For each query, output the result on a single line. Use a blank line to separate each test case.

【Sample Input】

2
0 1
5
QUERY 1
QUERY 2
MOVE 2 0
MOVE 1 2
QUERY 1
6
0 6 4 6 1 0
4
MOVE 4 1
QUERY 3
MOVE 1 4
QUERY 1

【Sample Output】

1
1
2

1
1

【题意】

动态地维护一些盒子套盒子的操作,询问根。

【分析】

盒子与盒子的关系可以直观地用树的结构来表示,一个结点下的子结点可以表示大盒子里面直接套着的小盒子。

所以本题就是一个裸的Link-Cut Tree模型了。

关于LCT树,虽然坑了这么久,但是真的要我写的话,不知道该从哪开写。还是推荐Yang Zhe的QTREE论文吧。

看了很多代码,觉得还是写不好,总觉得别人的用起来不顺,最后是在自己原来Splay的基础上改的。

原本的整棵树是个splay,但是在LCT中,整棵树是由很多棵分散的Splay组合起来的,于是在其中的一些点上加上root标记,表示以这一点为根下面可以形成一棵splay树。多个这样的splay组合完成之后就是一棵LCT了。

后面的代码中加入了输入输出挂。。。。。。

  1 /* ***********************************************
  2 MYID    : Chen Fan
  3 LANG    : G++
  4 PROG    : HDU 2475
  5 ************************************************ */
  6
  7 #include <iostream>
  8 #include <cstdio>
  9 #include <cstring>
 10 #include <algorithm>
 11
 12 using namespace std;
 13
 14 #define MAXN 50010
 15
 16 int sons[MAXN][2];
 17 int father[MAXN],pathfather[MAXN],data[MAXN];
 18 bool root[MAXN];
 19 int spttail=0;
 20
 21 void rotate(int x,int w) //rotate(node,0/1)
 22 {
 23     int y=father[x];
 24
 25     sons[y][!w]=sons[x][w];
 26     if (sons[x][w]) father[sons[x][w]]=y;
 27     father[x]=father[y];
 28     if (father[y]&&(!root[y])) sons[father[y]][y==sons[father[y]][1]]=x;
 29     sons[x][w]=y;
 30     father[y]=x;
 31
 32     if (root[y])
 33     {
 34         root[x]=true;
 35         root[y]=false;
 36     }
 37 }
 38
 39 void splay(int x) //splay(node)
 40 {
 41     while(!root[x])
 42     {
 43         if (root[father[x]]) rotate(x,x==sons[father[x]][0]);
 44         else
 45         {
 46             int t=father[x];
 47             int w=(sons[father[t]][0]==t);
 48             if (sons[t][w]==x)
 49             {
 50                 rotate(x,!w);
 51                 rotate(x,w);
 52             } else
 53             {
 54                 rotate(t,w);
 55                 rotate(x,w);
 56             }
 57         }
 58     }
 59 }
 60
 61 void access(int v)
 62 {
 63     int u=v;
 64     v=0;
 65     while(u)
 66     {
 67         splay(u);
 68         root[sons[u][1]]=true;
 69         sons[u][1]=v;
 70         root[v]=false;
 71         v=u;
 72         u=father[u];
 73     }
 74 }
 75
 76 int findroot(int v)
 77 {
 78     access(v);
 79     splay(v);
 80     while (sons[v][0]) v=sons[v][0];
 81     //splay(v,0);
 82     return v;
 83 }
 84
 85 void cut(int v)
 86 {
 87     access(v);
 88     splay(v);
 89     father[sons[v][0]]=0;
 90     root[sons[v][0]]=true;
 91     sons[v][0]=0;
 92 }
 93
 94 void join(int v,int w)
 95 {
 96     if (!w) cut(v);
 97     else
 98     {
 99         access(w);
100         splay(w);
101         int temp=v;
102         while(!root[temp]) temp=father[temp];
103         if (temp!=w)
104         {
105             cut(v);
106             father[v]=w;
107         }
108     }
109 }
110
111 int INT()
112 {
113     char ch;
114     int res;
115     while (ch=getchar(),!isdigit(ch));
116     for (res = ch - ‘0‘;ch = getchar(),isdigit(ch);)
117         res = res * 10 + ch - ‘0‘;
118     return res;
119 }
120
121 char CHAR()
122 {
123     char ch, res;
124     while (res = getchar(), !isalpha(res));
125     while (ch = getchar(), isalpha(ch));
126     return res;
127 }
128
129 int main()
130 {
131     //freopen("2475.txt","r",stdin);
132
133     int n;
134     double flag=false;
135     while(scanf("%d",&n)!=EOF)
136     {
137         if (flag) printf("\n");
138         flag=true;
139
140         memset(father,0,sizeof(father));
141         memset(sons,0,sizeof(sons));
142         for (int i=1;i<=n;i++)
143         {
144             //scanf("%d",&father[i]);
145             father[i]=INT();
146             root[i]=true;
147         }
148
149         int m;
150         m=INT();
151         for (int i=1;i<=m;i++)
152         {
153             char s=CHAR();
154             if (s==‘M‘)
155             {
156                 int x,y;
157                 x=INT();
158                 y=INT();
159                 join(x,y);
160             } else
161             {
162                 int q;
163                 q=INT();
164                 printf("%d\n",findroot(q));
165             }
166         }
167     }
168
169     return 0;
170 }

时间: 2024-10-11 18:02:12

HDU 2475 BOX 动态树 Link-Cut Tree 动态树模板的相关文章

Link Cut Tree 动态树 小结

动态树有些类似 树链剖分+并查集 的思想,是用splay维护的 lct的根是动态的,"轻重链"也是动态的,所以并没有真正的轻重链 动态树的操作核心是把你要把 修改/询问/... 等等一系列的操作的树链放到一个splay里,然后用splay根据相对深度大小来维护这个树链 lct利用了splay的神奇性质,通过"认爹不认子"来达到记录多个子树的目的 lct的核心,access函数的意义是,在从这个点到它所在联通块中 相对深度最小的点 (可以理解为子树根) 的树链上,打通

P3690 Link Cut Tree (动态树)

干脆整个LCT模板吧. 缺个链上修改和子树操作,链上修改的话join(u,v)然后把v splay到树根再打个标记就好. 至于子树操作...以后有空的话再学(咕咕咕警告) 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int N=1e5+10; 5 int n,m,a[N],Xor[N],fa[N],ch[N][2],flp[N],sta[N],tp; 6 #define l(u

LuoguP3690 【模板】Link Cut Tree (动态树) LCT模板

P3690 [模板]Link Cut Tree (动态树) 题目背景 动态树 题目描述 给定n个点以及每个点的权值,要你处理接下来的m个操作.操作有4种.操作从0到3编号.点从1到n编号. 0:后接两个整数(x,y),代表询问从x到y的路径上的点的权值的xor和.保证x到y是联通的. 1:后接两个整数(x,y),代表连接x到y,若x到y已经联通则无需连接. 2:后接两个整数(x,y),代表删除边(x,y),不保证边(x,y)存在. 3:后接两个整数(x,y),代表将点x上的权值变成y. 输入输出

P3690 【模板】Link Cut Tree (动态树)

P3690 [模板]Link Cut Tree (动态树) https://www.luogu.org/problemnew/show/P3690 分析: LCT模板 代码: 注意一下cut! 1 #include<cstdio> 2 #include<algorithm> 3 4 using namespace std; 5 6 const int N = 300100; 7 8 int val[N],fa[N],ch[N][2],rev[N],sum[N],st[N],top;

脑洞大开加偏执人格——可持久化treap版的Link Cut Tree

一直没有点动态树这个科技树,因为听说只能用Splay,用Treap的话多一个log.有一天脑洞大开,想到也许Treap也能从底向上Split.仔细思考了一下,发现翻转标记不好写,再仔细思考了一下,发现还是可以写的,只需要实时交换答案二元组里的两棵树,最后在吧提出来的访问节点放回去就行了.本着只学一种平衡树的想法,脑洞大开加偏执人格的开始写可持久化Treap版的Link Cut Tree... 写了才发现,常数硕大啊!!!代码超长啊!!!因为merge是从上到下,split从下到上,pushdow

Link Cut Tree学习笔记

从这里开始 动态树问题和Link Cut Tree 一些定义 access操作 换根操作 link和cut操作 时间复杂度证明 Link Cut Tree维护链上信息 Link Cut Tree维护子树信息 小结 动态树问题和Link Cut Tree 动态树问题是一类要求维护一个有根树森林,支持对树的分割, 合并等操作的问题. Link Cut Tree(林可砍树?简称LCT)是解决这一类问题的一种数据结构. 一些无聊的定义 Link Cut Tree维护的是动态森林中每棵树的任意链剖分. P

bzoj2049 [Sdoi2008]Cave 洞穴勘测 link cut tree入门

link cut tree入门题 首先说明本人只会写自底向上的数组版(都说了不写指针.不写自顶向下QAQ……) 突然发现link cut tree不难写... 说一下各个函数作用: bool isroot(int x):判断x是否为所在重链(splay)的根 void down(int x):下放各种标记 void rotate(int x):在x所在重链(splay)中将x旋转到fa[x]的位置上 void splay(int x):在x坐在重链(splay)中将x旋转到根 void acce

link cut tree 入门

鉴于最近写bzoj还有51nod都出现写不动的现象,决定学习一波厉害的算法/数据结构. link cut tree:研究popoqqq那个神ppt. bzoj1036:维护access操作就可以了. #include<cstdio> #include<cstring> #include<cctype> #include<algorithm> #include<queue> using namespace std; #define rep(i,s,

HDOJ 题目3966 Aragorn&#39;s Story(Link Cut Tree成段加减点权,查询点权)

Aragorn's Story Time Limit: 10000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 5505    Accepted Submission(s): 1441 Problem Description Our protagonist is the handsome human prince Aragorn comes from The Lor

Link Cut Tree(无图慎入)

类似树链剖分(其实直接记住就可以了),提前放代码 1 #include<cstdio> 2 #include<cstdlib> 3 #include<iostream> 4 #include<algorithm> 5 #include<cstring> 6 #include<climits> 7 #include<cmath> 8 #define N (int)(3e5+5) 9 using namespace std;