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

문제

It was time for the 7th Nordic Cinema Popcorn Convention, and this year the manager Ian had a brilliant idea. In addition to the traditional film program, there would be a surprise room where a small group of people could stream a random movie from a large collection, while enjoying popcorn and martinis.

However, it turned out that some people were extremely disappointed, because they got to see movies like Ghosts of Mars, which instead caused them to tear out their hair in despair and horror.

To avoid this problem for the next convention, Ian has come up with a solution, but he needs your help to implement it. When the group enters the surprise room, they will type in a list of movies in a computer. This is the so-called horror list, which consists of bad movies that no one in the group would ever like to see. Of course, this list varies from group to group.

You also have access to the database Awesome Comparison of Movies which tells you which movies are directly similar to which. You can assume that movies that are similar to bad movies will be almost as bad. More specificly, we define the Horror index as follows:

HI = 0 (if movie is on horror list. This overrides the other definitions.)
   = Q+1 (if the worst directly similar movie has HI = Q)
   = +∞ (if not similar at all to a horrible movie)

 

입력

The first line of input contains three positive integers N, H, L (1 ≤ H < N ≤ 1000, 0 ≤ L ≤ 10000), where N is the number of movies (represented by IDs, ranging from 0 to N − 1), H is the number of movies on the horror list and L is the number of similarities in the database.

The second line contains H unique space-separated integers xi (0 ≤ xi < N) denoting the ID of the movies on the horror list.

The following L lines contains two space-separated integers ai, bi (0 ≤ ai < bi < N), denoting that movie with ID ai is similar to movie with ID bi (and vice verca).

출력

Output the ID of the best movie in the collection (highest Horror Index). In case of a tie, output the movie with the lowest ID.

예제 입력 1

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

예제 출력 1

1

예제 입력 2

6 2 3
5 2
0 5
0 1
3 4

예제 출력 2

3