#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 NN 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 uu and vv, after some positions have been destroyed.

Input

The first line of inputs gives t(t15)t (t \leq 15) indicating the number of test cases. Then tt blocks follow. The first line of each block gives nn and m(2n200,0m100000)m (2 \leq n \leq 200, 0 \leq m \leq 100000) indicating the number of positions and number of roads. Each of the next mm lines contains 33 integers u,vu, v and e(1u,vn,1e1000)e (1 \leq u, v \leq n, 1 \leq e \leq 1000), telling that there is a road between position uu and position vv and the distance of the road is ee. An integer q(q10000)q (q \leq 10000) follows in the next line representing the number of queries to process. Each of the next qq lines has one of the following formats:

A. 00 uu vv: This means you should reply with the shortest path between position uu and position vv.

B. 11 uu: This means position uu 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 A:0A:0 uu vv, if any of the queried position is destroyed or there is no path from uu to vv, 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

经典问题