CF1867F.Most Different Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Given a tree with nn vertices rooted at vertex 11 , denote it as GG . Also denote P(G)P(G) as the multiset of subtrees of all vertices in tree GG . You need to find a tree GG' of size nn rooted at vertex 11 such that the number of subtrees in P(G)P(G') that are isomorphic to any subtree in P(G)P(G) is minimized.

A subtree of vertex vv is a graph that contains all vertices for which vertex vv lies on the path from the root of the tree to itself, as well as all edges between these vertices.

Two rooted trees are considered isomorphic if it is possible to relabel the vertices of one of them so that it becomes equal to the other, with the root of the first tree receiving the number of the root of the second tree.

输入格式

The first line contains a single integer nn ( 2n1062 \le n \le 10^6 ) - the number of vertices in tree GG . Each of the next n1n-1 lines contains two integers aa and bb (1a,bn)(1 \leq a,b \leq n) , indicating that there is an edge between vertices aa and bb in the tree.

输出格式

Output n1n-1 lines, each line containing two numbers aa , bb (1a,bn)(1 \leq a,b \leq n) - the edges of tree GG' . If there are multiple optimal answers, output any.

输入输出样例

  • 输入#1

    2
    1 2

    输出#1

    1 2
  • 输入#2

    3
    1 2
    1 3

    输出#2

    1 2
    2 3
  • 输入#3

    4
    1 2
    1 3
    3 4

    输出#3

    1 2
    2 3
    3 4
首页