NOI '21 P3 - Celebration

View as PDF

Submit solution

Points: 25 (partial)
Time limit: 2.0s
Memory limit: 1G

Problem type

rpeng: I raised the TL to 2 seconds to avoid fast I/O nonsense. I was able to get AC (very close though) using cin/cout.

There are n cities and m one-directional roads in a country. The cities are numbered 1, 2, \dots, n. If it is possible to reach city y via roads from city x, we say city y is reachable from city x, which is denoted by x \Rightarrow y. The roads in the country satisfy the following property: for three cities x,y,z, if x \Rightarrow z and y \Rightarrow z, then x \Rightarrow y or y \Rightarrow x.

Now there will be q parades throughout the celebration. The i-th parade starts in city s_i and ends in city t_i after visiting some other cities. A city may be visited multiple times during a parade. To make the parades more interesting, for each parade we will build k (0 \le k \le 2) one-way roads for the exclusive use of that parade, and other parades may not go through the roads built for the specific parade.

Now we want to know the number of cities that COULD BE visited during a parade. Notice that roads built for the exclusive use of a parade do not have to satisfy the property satisfied by the roads originally in the country.

Input Specification

The first line contains four integers n,m,q,k denoting the number of cities, the number of roads, the number of parades, and the number of roads that will be built for each parade.

In the following m lines, each line contains two integers u,v denoting there is a one-way road u \to v.

In the next q lines, each line contains two integers s_i,t_i denoting the origin and the destination of the parade. Then on the same line, there will be k pairs of integers a,b denoting there exists a temporary one-way road a \to b for the exclusive use of the parade.

It is guaranteed if we treat the one-way roads originally in the country as bidirectional, the cities are mutually reachable.

Output Specification

For each query, output an integer in a line denoting the answer. If it is not possible to reach the destination from the origin, output 0.

Sample Input 1

5 6 4 1
1 2
1 3
1 4
2 5
4 5
5 4
1 4 5 1
2 3 5 3
1 2 5 2
3 4 5 1

Sample Output 1

4
4
4
0

Explanation for Sample Output 1

In parade 1, the origin is city 1 and the destination is city 4. The temporary road is 5 \to 1. The cities that may be visited are cities 1,2,4,5.

In parade 2, the origin is city 2 and the destination is city 3. The temporary road is 5 \to 3. The cities that may be visited are cities 2,3,4,5.

In parade 3, the origin is city 1 and the destination is city 2. The temporary road is 5 \to 2. The cities that may be visited are cities 1,2,4,5.

In parade 4, the origin is city 3 and the destination is city 4. The temporary road is 5 \to 1. We cannot reach city 4 from city 3.

Additional Samples

Sample inputs and outputs can be found here.

  • Sample 2 (celebration2.in and celebration2.ans) corresponds to cases 5-7.
  • Sample 3 (celebration3.in and celebration3.ans) corresponds to cases 10-11.
  • Sample 4 (celebration4.in and celebration4.ans) corresponds to cases 15-16.
  • Sample 5 (celebration5.in and celebration5.ans) corresponds to cases 20-25.

Constraints

For all test cases, 1 \le n, q \le 3 \times 10^5, n-1 \le m \le 6 \times 10^5, 0 \le k \le 2.

Test Case n,q \le k Additional Constraints
1~4 5 =0 None.
5~7 1000 \le 2
8~9 3 \times 10^5 = 0 m = n-1
10~11 = 1
12~14 = 2
15~16 = 0 None.
17~19 = 1
20~25 = 2

Comments

There are no comments at the moment.