#Lutece0443. Graph

Graph

Migrated from Lutece 443 Graph

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

Saerdna likes travelling, but he can not afford the GPS. He only has a broken map with him. However, he could only find out the approximate locations of the tourist attractions with the map which is too dilapidated. After arriving there, he could ask for the specific destination. Can you help him?

Input

The first line of the input is an integer TT(T10T\leq 10), which represents that there are TT test cases.

Each test case starts with two integers RR, UU(U20U\leq 20) representing the number of points and the number of connected blocks in the map.

And then UU blocks follow.

The first line of each block contains two integers KK(K20K\leq 20), II(IK2I\leq K^2), which represent the number of points and the number of edges in each connected block.

This is followed by II lines, each line contains three integers aa, bb, cc, which represents that there is an edge between aa and bb with the length cc(c100000c\leq 100000).

After the UU blocks, there is an integer QQ (Q5000Q\leq 5000), for QQ queries.

Next there are QQ lines; each line has one of the two forms as follow:

  • add a b c
  • query a b

Output

Each case starts with Case :S (SS represents for the case number).

Then for each query, print the shortest path between aa and bb, if there is no path, print 1-1.Print each answer in a line.

Samples

1
4 2
2 1
0 1 1
2 1
2 3 1
3
query 0 3
add 1 2 2
query 0 3
Case :1
-1
4

Note

  1. We guarantee that aa and bb are not in the same connected block when add edge.
  2. Point numbers in the same connected block are continues.

Resources

5th BUPT Programming Contest Final