#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 . Now, there is 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 , which indicates there are test cases in the input.
For each test case, the first line contains two integer (), (), meaning there are islands and pairs island where stalkers can blink. Then lines followed, each line contain three integer , , , (), (), which means a stalker can blink from to or to , and the distance is . Then a single line contains a integer (), which indicates there are stalkers. Then lines followed, each line contain three integer , , , (), (), meaning this stalker start at island and target island is , the distance it can blink is . You can assume that the graph described in every test case is connected.
Output
For each test case, output lines. First, output Case #C:
, where is the number of test case, from to . Then output lines, if the 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