A1557.[COCI-2016_2017-contest1]#4 Mag
普及+/提高
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
You are given an undirected tree with each of its node assigned a magic Xi .
1 The magic of a path is defined as the product of the magic of the nodes on that path divided 2 by the number of the nodes on the path. For example, the magic of a path that consists of nodes with magic 3 and 5 is
7.5 (3·5 / 2).
In the given tree, find the path with the minimal magic and output the magic of that path.
输入格式
The first line of input contains the integer N (1 ≤ N ≤ 106 ), the number of nodes in the tree.
Each of the following N - 1 lines contains two integers, Ai and Bi (1 ≤ Ai , Bi ≤ N), the labels of nodes connected with an edge.
The i th of the following N lines contains the integer Xi (1 ≤ Xi ≤ 109 ), magic of the i th node.
输出格式
Output the magic of the path with minimal magic in the form of a completely reduced fraction P/Q (P and Q are relatively prime integers).
In all test cases, it will hold that the required P and Q are smaller than 1018 .
输入输出样例
输入#1
2 1 2 3 4
输出#1
3/1
输入#2
5 1 2 2 4 1 3 5 2 2 1 1 1 3
输出#2
1/2
说明/提示
In test cases worth 24 points total, it will hold N ≤ 1 000.
In test cases worth 36 additional points total, there will not be a node that is connected to
more than 2 other nodes.
Clarification of the first test case: Notice that the path may begin and end in the same node. The path with the minimal magic consists of
the node with magic 3, so the entire path’s magic is 3 / 1.
Clarification of the second test case: The path that consists of nodes with labels 2 and 4 is of magic (1·1) / 2 = 1 / 2.
That is also the path with the minimal possible magic.