CF1521D.Nastia Plays with a Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Nastia has an unweighted tree with n vertices and wants to play with it!
The girl will perform the following operation with her tree, as long as she needs:
- Remove any existing edge.
- Add an edge between any pair of vertices.
What is the minimum number of operations Nastia needs to get a bamboo from a tree? A bamboo is a tree in which no node has a degree greater than 2 .
输入格式
The first line contains a single integer t ( 1≤t≤10000 ) — the number of test cases.
The first line of each test case contains a single integer n ( 2≤n≤105 ) — the number of vertices in the tree.
Next n−1 lines of each test cases describe the edges of the tree in form ai , bi ( 1≤ai,bi≤n , ai=bi ).
It's guaranteed the given graph is a tree and the sum of n in one test doesn't exceed 2⋅105 .
输出格式
For each test case in the first line print a single integer k — the minimum number of operations required to obtain a bamboo from the initial tree.
In the next k lines print 4 integers x1 , y1 , x2 , y2 ( 1≤x1,y1,x2,y2≤n , x1=y1 , x2=y2 ) — this way you remove the edge (x1,y1) and add an undirected edge (x2,y2) .
Note that the edge (x1,y1) must be present in the graph at the moment of removing.
输入输出样例
输入#1
2 7 1 2 1 3 2 4 2 5 3 6 3 7 4 1 2 1 3 3 4
输出#1
2 2 5 6 7 3 6 4 5 0
说明/提示
Note the graph can be unconnected after a certain operation.
Consider the first test case of the example:
The red edges are removed, and the green ones are added.