Ensure that you are logged in and have the required permissions to access the test.

Two paths

4

2 votes
Algorithms, Approved, Graphs, Medium
Problem

Given an undirected graph with n vertices and m edges. Each edge is one of the two types: white and black.

There are q queries denoted by four vertices a, b, c and d. Each query asks: can some of the black edges be deleted, so that a is reachable from b, but c is not reachable from d? Note that graph itself doesn't change from query to query.

Input format

The first line contains three integers n, m and q () - number of vertices, number of edges and number of queries, respectively.

Then m lines follow.

The i-th of them contains three integers , and (, , ) describing edge connecting and , for black edge and for white edge.

Then q lines follow.

The i-th of them contains four integers , , and ( — vertices in the i-th query.

Output format

For each query print Yes if it's possible to delete some black edges and satisfy the condition. Print No otherwise.

Sample Input
5 6 4
1 2 0
1 2 0
2 3 1
1 3 0
3 4 0
4 5 0
1 2 4 5
2 5 1 4
2 5 3 4
1 1 2 2
Sample Output
Yes
Yes
No
No
Time Limit: 2
Memory Limit: 512
Source Limit:
Explanation
  • In the first query you can delete the 6-th edge (between 4 and 5).
  • In the second query you can delete first, second and 4-th edges.
Editor Image

?