跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2071. Mashmokh's Designed Problem

    ID: 2077 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 10 上传者: 标签>数据结构挑战难度共享题库Codeforces英文题面题目来源题面语言

Mashmokh's Designed Problem

题目描述

E. Mashmokh's Designed Problem
time limit per test
4 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

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:

  1. find distance (the number of edges in the shortest path) between u and v;
  2. 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 x1,x2,...,xl(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;
  3. 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):


// ls[v]: list of children of vertex v
// its i-th element is ls[v][i]
// its size is size(ls[v])
sequence result = empty sequence;
void dfs(vertex now)
{
add now to end of result;
for(int i = 1; i <= size(ls[v]); i = i + 1) //loop from i = 1 to i = size(ls[v])
dfs(ls[v][i]);
}
Input

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≤lin), 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.

Output

For each query of the first or third type output one line containing the result of the query.

Examples
Input
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
Output
3
2
2
4
1
3
4
Input
2 2
1 2
0
1 2 1
3 1
Output
1
2

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1667 题。保留原作者与原赛事署名。