Acesrc is a famous tourist at Nanjing University second to none. During this summer holiday, he, along with Zhang and Liu, is going to travel to Hong Kong. There are nn spots in Hong Kong, and n−1n−1bidirectional sightseeing bus routes connecting these spots. They decide to visit some spots by bus.
However, Zhang and Liu have different preferences for these spots. They respectively set a satisfactory value for each spot. If they visit the iith spot, Zhang will obtain satisfactory value aiai, and Liu will obtain bibi. Starting with Zhang, they alternately decide the next spot to visit for the sake of fairness. There must be a bus route between the current spot and the next spot to visit. Moreover, they would never like to visit a spot twice. If anyone can't find such a next spot to visit, they have no choice but to end this travel.
Zhang and Liu are both super smart competitive programmers. Either want to maximize the difference between his total satisfactory value and the other's. Now Acesrc wonders, if they both choose optimally, what is the difference between total satisfactory values of Zhang and Liu?
Input
The first line of input consists of a single integer TT(1≤T≤30)(1≤T≤30), denoting the number of test cases.
For each test case, the first line contains a single integer nn(1≤n≤105)(1≤n≤105), denoting the number of spots. Each of the next two lines contains nn integers, a1,a2,⋯,ana1,a2,⋯,an and b1,b2,⋯,bnb1,b2,⋯,bn(0≤ai,bi≤109)(0≤ai,bi≤109), denoting the satisfactory value of Zhang and Liu for every spot, respectively. Each of the last n−1n−1 lines contains two integers x,yx,y(1≤x,y≤n,x≠y)(1≤x,y≤n,x≠y), denoting a bus route between the xxth spot and the yyth spot. It is reachable from any spot to any other spot through these bus routes.
It is guaranteed that the sum of nn does not exceed 5.01×1055.01×105.
Output
For each test case, print a single integer in one line, the difference of total satisfactory values if they both choose optimally.