eolymp
bolt
Try our new interface for solving problems
Problems

Tree Edges Coloring

Tree Edges Coloring

You are given a tree T of n nodes. The nodes in the tree are numbered 1 through n. Let's consider some set of different colors numbered 1 through n1. Each color costs differently. You are given a sequence cost1, cost2, ..., costn−1 of the color costs.

For each edge, you should choose exactly one color in such a way that no two incident edges have the same color and the sum of the chosen color costs is as minimal as possible.

More formally, let's assign some unique integer from 1 to n1 to each of the edges of T. A sequence c1, c2, ..., cn−1 (1ckn1) is called an edge coloring of the tree; ck is called the color of the k'th edge. An edge coloring is called valid, if there is no such a pair of edges, that share a common node and have the same color.

The cost of an edge coloring is the sum of the color costs for all the edges of the tree. Your task is to find the cost of the cheapest valid edge coloring.

Input

The first line contains one integer t (1t16) denoting the number of test cases in the input.

The first line of each test case description contains an integer n (1n100). The second line contains n1 positive integers denoting cost1, cost2, ..., costn−1 (1costcolor1000). Each of the next n1 lines contains two integers u and v denoting an edge of the tree.

Output

For each test case, output a single integer: the cost of the cheapest valid edge coloring.

Time limit 1 second
Memory limit 122.17 MiB
Input example #1
2
5
1 2 3 4
1 2
2 3
2 4
4 5
6
16 4 1 8 2
1 3
3 5
6 3
3 2
4 3
Output example #1
7
31