#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 NN 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 NN nodes has N1N-1 edges.

As a traveler, Bob wants to journey between those NN 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 QQ 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 00.

Input

The first line of the input is a single integer TT(1T201\leq T \leq 20), indicating there are TT test cases.

For each test case, the first will line contain two integers NN(2N1052 \leq N \leq 10^5) and QQ(1Q1051 \leq Q \leq 10^5), indicating the number of cities in byteland and the journey plans. Then NN line followed, each line will contain three integer xx, yy(1x,yN1 \leq x,y \leq N) and zz(1z10001 \leq z \leq 1000) indicating there is a road cost zz time connect the xthx^{th} city and the ythy^{th} city, the first N1N-1 roads will form a tree structure, indicating the original roads, and the NthN^{th} line is the road built after Bob advised the king. Then QQ line followed, each line will contain two integer xx and yy(1x,yN1 \leq x,y \leq N), indicating there is a journey plan from the xthx^{th} city to ythy^{th} city.

Output

For each case, you should first output Case #t: in a single line, where tt indicating the case number between 11 and TT, then QQ lines followed, the ithi^{th} line contains one integer indicating the time could be saved in ithi^{th} 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