2693.Painting Edges

Time Limit: 1s Memory Limit: 256MB

Note the unusual memory limit for this problem.

You are given an undirected graph consisting of n vertices and m edges. The vertices are numbered with integers from 1 to n, the edges are numbered with integers from 1 to m. Each edge can be unpainted or be painted in one of the k colors, which are numbered with integers from 1 to k. Initially, none of the edges is painted in any of the colors.

You get queries of the form "Repaint edge ei to color ci". At any time the graph formed by the edges of the same color must be bipartite. If after the repaint this condition is violated, then the query is considered to be invalid and edge ei keeps its color. Otherwise, edge ei is repainted in color ci, and the query is considered to valid.

Recall that the graph is called bipartite if the set of its vertices can be divided into two parts so that no edge connected vertices of the same parts.

For example, suppose you are given a triangle graph, that is a graph with three vertices and edges (1,2), (2,3) and (3,1). Suppose that the first two edges are painted color 1, and the third one is painted color 2. Then the query of "repaint the third edge in color 1" will be incorrect because after its execution the graph formed by the edges of color 1 will not be bipartite. On the other hand, it is possible to repaint the second edge in color 2.

You receive q queries. For each query, you should either apply it, and report that the query is valid, or report that the query is invalid.

Input Format(From the terminal/stdin)

The first line contains integers n, m, k, q (2 \le n \le 5 \cdot 105, 1 \le m,q \le 5 \cdot 105, 1 \le k \le 50) - the number of vertices, the number of edges, the number of colors and the number of queries.

Then follow m edges of the graph in the form ai, bi (1 \le ai,bi \le n).

Then follow q queries of the form ei, ci (1 \le ei \le m, 1 \le ci \le k).

It is guaranteed that the graph doesn't contain multiple edges and loops.

Output Format(To the terminal/stdout)

For each query print "YES" (without the quotes), if it is valid, or "NO" (without the quotes), if this query destroys the bipartivity of the graph formed by the edges of some color.

Sample Input

Copy
3 3 2 5
1 2
2 3
1 3
1 1
2 1
3 2
3 1
2 2
 · · · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output

Copy
YES
YES
YES
NO
YES
   \n
   \n
   \n
  \n
   \n

Submit

请先 登录

© 2025 FAQs