|
||||||||||
Building RoadsTime Limit: 16000/8000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1355 Accepted Submission(s): 537 Problem Description There is a magic planet in the space. There is a magical country on the planet. There are N cities in the country. The country is magical because there are exactly N-1 magic roads between the N cities, and from each city, it is possible to visit any other city. But after the huge expansion of the country, the road system seems to be messy. The moderator decided to rebuild the road system. As a worker, I cannot do too much things. I could just move one road to another position connecting arbitrary 2 cities using my magic, keeping its length unchanged. Of course, afterwards all the N cities have to be still connected. I wonder how to move in order to make the farthest distance between any two cities minimum. Could you solve it for me? Input The first line of the input is one integer T (T ¡Ü 10), and then T test cases follow. Each test case begins with a line contains only one integer N (N ¡Ü 2500), means there are N magic cities. The cities are numbered from 0 to N-1. Following N-1 lines, each line has 3 integers a, b and c, means there is a magic road between a and b with distance c. (0 <= a, b < N, 0 < c <= 1000) Output For each test case, output the case number and the corresponding minimum farthest distance. See sample for detailed format. Sample Input
Sample Output
Source | ||||||||||
|