#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 (), which represents that there are test cases.
Each test case starts with two integers , () representing the number of points and the number of connected blocks in the map.
And then blocks follow.
The first line of each block contains two integers (), (), which represent the number of points and the number of edges in each connected block.
This is followed by lines, each line contains three integers , , , which represents that there is an edge between and with the length ().
After the blocks, there is an integer (), for queries.
Next there are 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
( represents for the case number).
Then for each query, print the shortest path between and , if there is no path, print .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
- We guarantee that and are not in the same connected block when add edge.
- Point numbers in the same connected block are continues.
Resources
5th BUPT Programming Contest Final