#Lutece0391. The Weight of Tree

The Weight of Tree

Migrated from Lutece 391 The Weight of Tree

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

456 has a tree of nn nodes, each node is assigned with an integer number. Now 456 wants to select a subtree, such that the sum of all integers on the nodes of the subtree is maxmized.

Can you help him?

Input

On the first line of the input is an integer TT, and then TT cases follows. Each case begins with a positive integer nn(1n1051\leq n\leq 10^5), then nn numbers WiW_i(1000Wi1000-1000\leq W_i\leq 1000),WiW_i for the number on the ithi_{th} node. Then n1n - 1 lines follows, each line contains two numbers aa, bb(1a,bn1\leq a, b\leq n) indicate that there is a edge between node aa and bb.

Output

For each test case, output one integer on a line, the maximized sum can be achieved by selecting a subtree.

Samples

3
1
5
2
5 -5
1 2
5
-2 -3 7 -1 4
1 2
2 3
3 4
2 5
5
5
8

Resources

10th SCU Programming Contest Final