#Lutece0265. War
War
Migrated from Lutece 265 War
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
Your country is now involved in a war! In the front, there are positions between which you can transfer goods. Unfortunately the enemies will attack you and destroy some positions. When transferring, you cannot pass through a position which has been destroyed. As the commander of the army, you want to know the minimum distance between some position and , after some positions have been destroyed.
Input
The first line of inputs gives indicating the number of test cases. Then blocks follow. The first line of each block gives and indicating the number of positions and number of roads. Each of the next lines contains integers and , telling that there is a road between position and position and the distance of the road is . An integer follows in the next line representing the number of queries to process. Each of the next lines has one of the following formats:
A. : This means you should reply with the shortest path between position and position .
B. : This means position is destroyed.
You should notice that all the positions are not destroyed initially and there could be more than one road between two positions.
Output
For all the queries in the format , if any of the queried position is destroyed or there is no path from to , print -1
; otherwise print the shortest path between the two positions. Print a blank line after each test case.
Samples
1
4 4
1 2 1
1 3 3
2 4 2
3 4 4
5
0 1 4
1 2
0 1 4
1 3
0 1 4
3
7
-1
Resources
经典问题