CF23E.Tree

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Recently Bob invented a new game with a tree (we should remind you, that a tree is a connected graph without cycles): he deletes any (possibly, zero) amount of edges of the tree, and counts the product of sizes of the connected components left after the deletion. Your task is to find out the maximum number that Bob can get in his new game for a given tree.

输入格式

The first input line contains integer number nn ( 1<=n<=7001<=n<=700 ) — amount of vertices in the tree. The following n1n-1 lines contain the description of the edges. Each line contains the pair of vertices' indexes, joined by an edge, aia_{i} , bib_{i} ( 1<=ai,bi<=n1<=a_{i},b_{i}<=n ). It's guaranteed that the graph described in the input is a tree.

输出格式

Output the only number — the maximum product of sizes of the connected components, that Bob can get after deleting some of the tree's edges.

输入输出样例

  • 输入#1

    5
    1 2
    2 3
    3 4
    4 5
    

    输出#1

    6
  • 输入#2

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

    输出#2

    18
  • 输入#3

    3
    1 2
    1 3
    

    输出#3

    3
首页