CF1675D.Vertical Paths

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a rooted tree consisting of nn vertices. Vertices are numbered from 11 to nn . Any vertex can be the root of a tree.

A tree is a connected undirected graph without cycles. A rooted tree is a tree with a selected vertex, which is called the root.

The tree is specified by an array of parents pp containing nn numbers: pip_i is a parent of the vertex with the index ii . The parent of a vertex uu is a vertex that is the next vertex on the shortest path from uu to the root. For example, on the simple path from 55 to 33 (the root), the next vertex would be 11 , so the parent of 55 is 11 .

The root has no parent, so for it, the value of pip_i is ii (the root is the only vertex for which pi=ip_i=i ).

Find such a set of paths that:

  • each vertex belongs to exactly one path, each path can contain one or more vertices;
  • in each path each next vertex — is a son of the current vertex (that is, paths always lead down — from parent to son);
  • number of paths is minimal.

For example, if n=5n=5 and p=[3,1,3,3,1]p=[3, 1, 3, 3, 1] , then the tree can be divided into three paths:

  1. 3153 \rightarrow 1 \rightarrow 5 (path of 33 vertices),
  2. 44 (path of 11 vertices).
  3. 22 (path of 11 vertices).

Example of splitting a root tree into three paths for n=5n=5 , the root of the tree — node 33 .

输入格式

The first line of input data contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases in the test.

Each test case consists of two lines.

The first of them contains an integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ). It is the number of vertices in the tree.

The second line contains nn integers p1,p2,,pnp_1, p_2, \dots, p_n ( 1pin1 \le p_i \le n ). It is guaranteed that the pp array encodes some rooted tree.

It is guaranteed that the sum of the values nn over all test cases in the test does not exceed 21052 \cdot 10^5 .

输出格式

For each test case on the first line, output an integer mm — the minimum number of non-intersecting leading down paths that can cover all vertices of the tree.

Then print mm pairs of lines containing path descriptions. In the first of them print the length of the path, in the second — the sequence of vertices specifying that path in the order from top to bottom. You can output the paths in any order.

If there are several answers, output any of them.

输入输出样例

  • 输入#1

    6
    5
    3 1 3 3 1
    4
    1 1 4 1
    7
    1 1 2 3 4 5 6
    1
    1
    6
    4 4 4 4 1 2
    4
    2 2 2 2

    输出#1

    3
    3
    3 1 5
    1
    2
    1
    4
    
    2
    2
    1 2
    2
    4 3
    
    1
    7
    1 2 3 4 5 6 7
    
    1
    1
    1
    
    3
    3
    4 1 5
    2
    2 6
    1
    3
    
    3
    2
    2 1
    1
    3
    1
    4
首页