5950: Apple Tree

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:2 通过:0

题目描述

B. Apple Tree
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
You are given a rooted tree with n vertices. In each leaf vertex there's a single integer − the number of apples in this vertex.
The weight of a subtree is the sum of all numbers in this subtree leaves. For instance, the weight of a subtree that corresponds to some leaf is the number written in the leaf.
A tree is balanced if for every vertex v of the tree all its subtrees, corresponding to the children of vertex v, are of equal weight.
Count the minimum number of apples that you need to remove from the tree (specifically, from some of its leaves) in order to make the tree balanced. Notice that you can always achieve the goal by just removing all apples.
Input
The first line contains integer n (2≤n≤105), showing the number of vertices in the tree. The next line contains n integers a1,a2,...,an (0≤ai≤108), ai is the number of apples in the vertex number i. The number of apples in non-leaf vertices is guaranteed to be zero.
Then follow n-1 lines, describing the tree edges. Each line contains a pair of integers xi,yi (1≤xi,yin,xiyi) − the vertices connected by an edge.
The vertices are indexed from 1 to n. Vertex 1 is the root.
Output
Print a single integer − the minimum number of apples to remove in order to make the tree balanced.
Please, do not write the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the sin, cout streams cin, cout or the %I64d specifier.
Examples
Input
6
0 0 12 13 5 6
1 2
1 3
1 4
2 5
2 6
Output
6

输入样例 复制


输出样例 复制


分类标签