#Lutece0092. Journey
Journey
Migrated from Lutece 92 Journey
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Bob has traveled to Byteland, he find the cities in byteland formed a tree structure, a tree structure is a very special structure, there is exactly one path connecting each pair of nodes, and a tree with nodes has edges.
As a traveler, Bob wants to journey between those cities, and he know the time each road will cost. He advises the king of Byteland building a new road to save time, and then, a new road was built. Now Bob has journey plans, give you the start city and destination city, please tell Bob how much time is saved by adding a road if he always choose the shortest path. Note that if it's better not journey from the new roads, the answer is .
Input
The first line of the input is a single integer (), indicating there are test cases.
For each test case, the first will line contain two integers () and (), indicating the number of cities in byteland and the journey plans. Then line followed, each line will contain three integer , () and () indicating there is a road cost time connect the city and the city, the first roads will form a tree structure, indicating the original roads, and the line is the road built after Bob advised the king. Then line followed, each line will contain two integer and (), indicating there is a journey plan from the city to city.
Output
For each case, you should first output Case #t:
in a single line, where indicating the case number between and , then lines followed, the line contains one integer indicating the time could be saved in journey plan.
Samples
1
5 5
1 2 3
2 3 4
4 1 5
3 5 1
3 1 5
1 2
1 3
2 5
3 4
4 5
Case #1:
0
2
0
2
2
Resources
Sichuan State Programming Contest 2012