CF468D.Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Little X has a tree consisting of n nodes (they are numbered from 1 to n ). Each edge of the tree has a positive length. Let's define the distance between two nodes v and u (we'll denote it d(v,u) ) as the sum of the lengths of edges in the shortest path between v and u .
A permutation p is a sequence of n distinct integers p1,p2,...,pn (1<=pi<=n) . Little X wants to find a permutation p such that sum is maximal possible. If there are multiple optimal permutations, he wants to find the lexicographically smallest one. Help him with the task!
输入格式
The first line contains an integer n (1<=n<=105) .
Each of the next n−1 lines contains three space separated integers ui,vi,wi (1<=ui,vi<=n; 1<=wi<=105) , denoting an edge between nodes ui and vi with length equal to wi .
It is guaranteed that these edges form a tree.
输出格式
In the first line print the maximum possible value of the described sum. In the second line print n integers, representing the lexicographically smallest permutation.
输入输出样例
输入#1
2 1 2 3
输出#1
6 2 1
输入#2
5 1 2 2 1 3 3 2 4 4 2 5 5
输出#2
32 2 1 4 5 3