当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

6662:Acesrc and Travel

题目描述
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 $n$ spots in Hong Kong, and $n - 1$ bidirectional 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 $i$th spot, Zhang will obtain satisfactory value $a_i$, and Liu will obtain $b_i$. 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?
输入解释
The first line of input consists of a single integer $T$ $(1 \leq T \leq 30)$, denoting the number of test cases.

For each test case, the first line contains a single integer $n$ $(1 \leq n \leq 10^5)$, denoting the number of spots. Each of the next two lines contains $n$ integers, $a_1, a_2, \cdots, a_n$ and $b_1, b_2, \cdots, b_n$ $(0 \leq a_i, b_i \leq 10^9)$, denoting the
satisfactory value of Zhang and Liu for every spot, respectively. Each of the last $n - 1$ lines contains two integers $x, y$ $(1 \leq x, y \leq n, x \neq y)$, denoting a bus route between the $x$th spot and the $y$th spot. It is reachable from any spot to any other spot through these bus routes.

It is guaranteed that the sum of $n$ does not exceed $5.01 \times 10^5$.
输出解释
For each test case, print a single integer in one line, the difference of total satisfactory values if they both choose optimally.
输入样例
1
3
1 1 1
0 2 3
1 2
1 3
输出样例
-1
来自杭电HDUOJ的附加信息
Recommend chendu

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-6662

最后修改于 2020-10-25T23:33:16+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/2000MS(Java/Others) 131072/131072K(Java/Others)