|
||||||||||
City PlanningTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 543 Accepted Submission(s): 273 Problem Description Recently Bob received a job. It¡¯s to reform the city¡¯s transport system. Since the city has so many villages, and the transportation network is so large that the government want to reduce the roads number. The government has just choose some of them, your duty is to build a transportation network between them to make them link with each other directly or indirectly. Meanwhile you should use the least money. You may suppose that the initial transportation network makes up a tree. Input There are several test cases. Each case starts with two integers n and m in a line. n stands for the number of all villages, m stands for the number of villages the government has chosen.( 0 < n < 1000, 0 < m <= n) Then follow m integers in a line which means the chosen villages. Then n - 1 lines follow, each line contains three integers a, b, c, indicating that between a and b there is a road available which costs c. (1 <= a, b <= n, a! = b, c <= 2000) Output For each test case, output the least money you need to use in a line. Sample Input
Sample Output
Author dandelion Source | ||||||||||
|