#Lutece0453. Blinking Stalkers

Blinking Stalkers

Migrated from Lutece 453 Blinking Stalkers

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

In Starcraft II, Stalker is an unusual kind of unit for its amazing ability called blink. Blink means you can move from one position to another one immediately as long as the distance between the two position is less than DD. Now, there is NN stalkers on some islands, and everyone have a target island to go. And of course, targets of them can be variable. Because any stalker can't move on water, they can only blink between islands. For some strange reason, only some particular pairs of island are allowed to blink. Your task is to determine whether they can move to their target island.

Input

In the first line of input there is an integer TT, which indicates there are TT test cases in the input.

For each test case, the first line contains two integer nn(2n10002\leq n\leq 1000), mm(1m1000001\leq m\leq 100000), meaning there are nn islands and mm pairs island where stalkers can blink. Then mm lines followed, each line contain three integer uu, vv, ww, (1u,vn1\leq u, v\leq n), (0<w10000000< w \leq 1000000), which means a stalker can blink from uu to vv or vv to uu, and the distance is ww. Then a single line contains a integer QQ(1Q30001\leq Q\leq 3000), which indicates there are QQ stalkers. Then QQ lines followed, each line contain three integer aa, bb, cc, (1a,bn1\leq a, b\leq n), (0<c10000000 < c \leq 1000000), meaning this stalker start at island aa and target island is bb, the distance it can blink is cc. You can assume that the graph described in every test case is connected.

Output

For each test case, output Q+1Q+1 lines. First, output Case #C: , where CC is the number of test case, from 11 to TT. Then output QQ lines, if the ithi_{th} stalker can move to its target island using its ability for finite times, output YES in a single line, otherwise output NO.

Samples

1
3 3
1 2 2
1 3 3
2 3 2
2
1 3 1
1 3 2
Case #1:
NO
YES

Resources

elfness