Tree //2010 ACM-ICPC Multi-University Training Contest(10)——Host by HEU

Tree

Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other)
Total Submission(s) : 17   Accepted Submission(s) : 5

Font: Times New Roman | Verdana | Georgia

Font Size:

Problem Description

In the Data structure class of HEU, the teacher asks one problem: How to find the longest path of one tree and the number of such longest path?

Input

There are several test cases. The first line of each case contains only one integer N, means there are N nodes in the tree. N-1 lines follow, each line has three integers w,v and len, indicate that there is one edge between node w and v., and the length of the edge is len.

Output

For each test case, output the length of longest path and its number in one line.

Sample Input

4
1 2 100
2 3 50
2 4 50
4
1 2 100
2 3 50
3 4 50

Sample Output

150 2
200 1

Source

2010 ACM-ICPC Multi-University Training Contest(10)——Host by HEU
无奈,自己的代码没保存、、、、、、

你可能感兴趣的:(ACM_图论,ACM_搜索)