CF414E.Mashmokh's Designed Problem
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
After a lot of trying, Mashmokh designed a problem and it's your job to solve it.
You have a tree T with n vertices. Each vertex has a unique index from 1 to n . The root of T has index 1 . For each vertex of this tree v , you are given a list of its children in a specific order. You must perform three types of query on this tree:
- find distance (the number of edges in the shortest path) between u and v ;
- given v and h , disconnect v from its father and connect it to its h -th ancestor; more formally, let's denote the path from v to the root by x_{1},x_{2},...,x_{l} (h<l) , so that x1=v and xl is root; disconnect v from its father ( x2 ) and connect it to xh+1 ; vertex v must be added to the end of the child-list of vertex xh+1 ;
- in the vertex sequence produced by calling function dfs(root) find the latest vertex that has distance k from the root.
The pseudo-code of function dfs(v):
<br></br>// ls[v]: list of children of vertex v <br></br>// its i-th element is ls[v][i]<br></br>// its size is size(ls[v])<br></br>sequence result = empty sequence;<br></br>void dfs(vertex now)<br></br>{<br></br> add now to end of result;<br></br> for(int i = 1; i <= size(ls[v]); i = i + 1) //loop from i = 1 to i = size(ls[v])<br></br> dfs(ls[v][i]);<br></br>}<br></br>
输入格式
The first line of input contains two space-separated integers n,m (2<=n<=105; 1<=m<=105) , the number of vertices of T and number of queries to perform.
The i -th of the following n lines contains an integer li (0<=li<=n) , number of i -th vertex's children. Then li space-separated integers follow, the j -th of them is the index of j -th child of i -th vertex. Note that the order of these vertices is important.
Each of the following m lines has one of the following format: " 1 v u ", " 2 v h ", or " 3 k ". The first number in the line is the type of query to perform according to the problem statement. The next numbers are description of the query.
It's guaranteed that all the queries are correct. For example, in the second-type query h is at least 2 and at most distance of v from root. Also in the third-type query there is at least one vertex with distance k from the root at the time the query is given.
输出格式
For each query of the first or third type output one line containing the result of the query.
输入输出样例
输入#1
4 9 1 2 1 3 1 4 0 1 1 4 2 4 2 1 3 4 3 1 3 2 2 3 2 1 1 2 3 1 3 2
输出#1
3 2 2 4 1 3 4
输入#2
2 2 1 2 0 1 2 1 3 1
输出#2
1 2