#AGC024D. [AGC024D] Isomorphism Freak

[AGC024D] Isomorphism Freak

Score : 11001100 points

Problem Statement

Coloring of the vertices of a tree GG is called a good coloring when, for every pair of two vertices uu and vv painted in the same color, picking uu as the root and picking vv as the root would result in isomorphic rooted trees.

Also, the colorfulness of GG is defined as the minimum possible number of different colors used in a good coloring of GG.

You are given a tree with NN vertices. The vertices are numbered 11 through NN, and the ii-th edge connects Vertex aia_i and Vertex bib_i. We will construct a new tree TT by repeating the following operation on this tree some number of times:

  • Add a new vertex to the tree by connecting it to one of the vertices in the current tree with an edge.

Find the minimum possible colorfulness of TT. Additionally, print the minimum number of leaves (vertices with degree 11) in a tree TT that achieves the minimum colorfulness.

Notes

The phrase "picking uu as the root and picking vv as the root would result in isomorphic rooted trees" for a tree GG means that there exists a bijective function fuvf_{uv} from the vertex set of GG to itself such that both of the following conditions are met:

  • fuv(u)=vf_{uv}(u)=v
  • For every pair of two vertices (a,b)(a,b), edge (a,b)(a,b) exists if and only if edge (fuv(a),fuv(b))(f_{uv}(a),f_{uv}(b)) exists.

Constraints

  • 2N1002 \leq N \leq 100
  • 1ai,biN(1iN1)1 \leq a_i,b_i \leq N(1\leq i\leq N-1)
  • The given graph is a tree.

Input

Input is given from Standard Input in the following format:

NN

a1a_1 b1b_1

::

aN1a_{N-1} bN1b_{N-1}

Output

Print two integers with a space in between. First, print the minimum possible colorfulness of a tree TT that can be constructed. Second, print the minimum number of leaves in a tree that achieves it.

It can be shown that, under the constraints of this problem, the values that should be printed fit into 6464-bit signed integers.

5
1 2
2 3
3 4
3 5
2 4

If we connect a new vertex 66 to vertex 22, painting the vertices (1,4,5,6)(1,4,5,6) red and painting the vertices (2,3)(2,3) blue is a good coloring. Since painting all the vertices in a single color is not a good coloring, we can see that the colorfulness of this tree is 22. This is actually the optimal solution. There are four leaves, so we should print 22 and 44.

8
1 2
2 3
4 3
5 4
6 7
6 8
3 6
3 4
10
1 2
2 3
3 4
4 5
5 6
6 7
3 8
5 9
3 10
4 6
13
5 6
6 4
2 8
4 7
8 9
3 2
10 4
11 10
2 4
13 10
1 8
12 1
4 12