시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB931100.000%

문제

Acquapia is a small country crossed by several rivers, all of them navigable. All rivers have their sources inside Acquapia, in the mountains, and all rivers end at sea – a river never ends at another river. During its course (not at its source) a river may split into two or more streams. There is a city wherever a river begins, splits or ends, and each city touches at most one river. The figure below shows a map of Acquapia, with two rivers and twenty cities. For clarity, only some cities are labeled. In the figure, E and F are cities that have river sources; B, C and D are cities where a river splits into different streams; and A is a city where a river ends.

Being so widespread, rivers are the main means of transportation in Acquapia. But since the country is at war with a neighboring country, it is not safe for ships to cross the sea, so ships can only navigate in rivers. That means that to go from city A to city D, a ship must travel upstream (against the river flow) from A to B and C, make a stream change at C and then travel downstream from C to D. Stream change, which is the operation of changing from navigating upstream to navigating downstream, is difficult and somewhat dangerous, since river streams are strong in Acquapia, and the turns are sharp. Notice that to navigate from B to E (or from E to B) no stream change is necessary. Also, due to the war, it is not possible to navigate, for example, from B to F.

Acquapia Cargo Management (ACM) is a software house that specializes in systems for navigation. ACM wants you to write a program that, given the description of rivers, the description of cities, and a set of queries, each composed by a pair of cities X and Y , answer the following questions:

  • “now that ships cannot cruise the sea, is it possible to navigate from city X to city Y ”?
  • “if it is possible to navigate from X to Y , does a ship need to make a stream change? If so, in which city, so that the distance travelled is the shortest possible?

입력

The input contains several test cases. The first line of a test case contains four integers C, R, S and Q, separated by single spaces, representing respectively the number of cities (2 ≤ C ≤ 103), the number of rivers (1 ≤ R ≤ C/2), the number or river sections (1 ≤ S ≤ C − 1) and the number of queries that will be made (1 ≤ Q ≤ 2 × 105). Cities are numbered sequentially from 1 to C. The second line of a test case contains R distinct integers, separated by single spaces, indicating the cities that are river sources. Each of the next S lines describes a different river section and contains two integers X and Y , separated by a single space, indicating that there is a section of river that flows from city X to city Y (X ≠ Y ). Then comes Q lines, each describing a query. Each query is composed of two integers A and B, separated by a single space, representing two cities (A ≠ B). The end of input is indicated by C = R = S = Q = 0.

The input must be read from standard input.

출력

For each test case your program must output Q + 1 lines, where Q is the number of queries in the test case. The first line must be empty; each of the following Q lines must contain one integer, representing the answer to the corresponding query, in the same order as the input. If it is not possible to navigate between the two cities in the query, print ‘-1’. If it is possible to navigate between the two cities but no stream change is necessary, print ‘0’. Otherwise, print the integer that represents the city where the stream change must be made.

The output must be written to standard output.

예제 입력 1

4 1 3 3
1
1 2
2 3
2 4
4 3
2 1
1 3
7 2 5 3
1 6
1 3
3 2
3 5
3 4
6 7
6 7
1 7
5 4
0 0 0 0

예제 출력 1

2
0
0

0
-1
3

출처

ICPC > Regionals > Latin America > Latin America Regional Contests > South America Regional Contests 2007 PA번

  • 잘못된 데이터를 찾은 사람: polequoll