1064.Divide Tree
提交状态 耗时 内存 语言 提交时间

1064.Divide Tree

时间限制:1000MS  内存限制:65535KB
题目描述
As we all know that we can consider a tree as a graph. Now give you a tree with nodes having its weight. We define the weight of a tree is the sum of the weight of all nodes on it. You know we can divide the tree into two subtrees by any edge of the tree. And your task is to tell me the minimum difference between the two subtrees’ weight.
输入描述
   The first line, an integer T (T <= 30), representing T test cases blew.
   For each test case, the first line contains one integer N (2 <= N <= 10000), indicating the number of tree’s nodes.   
   Then follow N integers in one line, indicating the weight of nodes from 1 to N.
For next N-1 lines, each line contains two integers Vi and Vj (1 <= Vi, Vj <= N), indicating one edge of the tree.
 
输出描述
For each test case, output the minimum weight difference. We assume that the result will not exceed 220.
示例
输入样例
1
5
6 3 9 3 1
2 3
3 1
4 1
1 5
输出样例
2
提示
相关标签
登陆后才可以提交
测试输入
执行结果
控制台
代码编辑器配置
  • 字体设置
    调整适合你的字体大小。
  • 主题设置
    切换不同的代码编辑器主题,选择适合你的语法高亮。
  • 行宽限制
    设置每一行代码的最大字符个数,设置为0则不限制。