CF1675D.Vertical Paths
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a rooted tree consisting of n vertices. Vertices are numbered from 1 to n . 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 p containing n numbers: pi is a parent of the vertex with the index i . The parent of a vertex u is a vertex that is the next vertex on the shortest path from u to the root. For example, on the simple path from 5 to 3 (the root), the next vertex would be 1 , so the parent of 5 is 1 .
The root has no parent, so for it, the value of pi is i (the root is the only vertex for which pi=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=5 and p=[3,1,3,3,1] , then the tree can be divided into three paths:
- 3→1→5 (path of 3 vertices),
- 4 (path of 1 vertices).
- 2 (path of 1 vertices).
Example of splitting a root tree into three paths for n=5 , the root of the tree — node 3 .
输入格式
The first line of input data contains an integer t ( 1≤t≤104 ) — the number of test cases in the test.
Each test case consists of two lines.
The first of them contains an integer n ( 1≤n≤2⋅105 ). It is the number of vertices in the tree.
The second line contains n integers p1,p2,…,pn ( 1≤pi≤n ). It is guaranteed that the p array encodes some rooted tree.
It is guaranteed that the sum of the values n over all test cases in the test does not exceed 2⋅105 .
输出格式
For each test case on the first line, output an integer m — the minimum number of non-intersecting leading down paths that can cover all vertices of the tree.
Then print m 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