CF1120D.Power Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a rooted tree with n vertices, the root of the tree is the vertex 1 . Each vertex has some non-negative price. A leaf of the tree is a non-root vertex that has degree 1 .
Arkady and Vasily play a strange game on the tree. The game consists of three stages. On the first stage Arkady buys some non-empty set of vertices of the tree. On the second stage Vasily puts some integers into all leaves of the tree. On the third stage Arkady can perform several (possibly none) operations of the following kind: choose some vertex v he bought on the first stage and some integer x , and then add x to all integers in the leaves in the subtree of v . The integer x can be positive, negative of zero.
A leaf a is in the subtree of a vertex b if and only if the simple path between a and the root goes through b .
Arkady's task is to make all integers in the leaves equal to zero. What is the minimum total cost s he has to pay on the first stage to guarantee his own win independently of the integers Vasily puts on the second stage? Also, we ask you to find all such vertices that there is an optimal (i.e. with cost s ) set of vertices containing this one such that Arkady can guarantee his own win buying this set on the first stage.
输入格式
The first line contains a single integer n ( 2≤n≤200000 ) — the number of vertices in the tree.
The second line contains n integers c1,c2,…,cn ( 0≤ci≤109 ), where ci is the price of the i -th vertex.
Each of the next n−1 lines contains two integers a and b ( 1≤a,b≤n ), denoting an edge of the tree.
输出格式
In the first line print two integers: the minimum possible cost s Arkady has to pay to guarantee his own win, and the number of vertices k that belong to at least one optimal set.
In the second line print k distinct integers in increasing order the indices of the vertices that belong to at least one optimal set.
输入输出样例
输入#1
5 5 1 3 2 1 1 2 2 3 2 4 1 5
输出#1
4 3 2 4 5
输入#2
3 1 1 1 1 2 1 3
输出#2
2 3 1 2 3
说明/提示
In the second example all sets of two vertices are optimal. So, each vertex is in at least one optimal set.