Planets Queries I
Easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
You are playing a game consisting of planets. Each planet has a teleporter to another planet (or the planet itself).
Your task is to process queries of the form: when you begin on planet and travel through teleporters, which planet will you reach?
Input
The first line has two integers and : the number of planets and queries. The planets are numbered .
The second line has integers : for each planet, the destination of the teleporter. It is possible that .
Finally, there are lines describing the queries. Each line has two integers and : you start on planet and travel through teleporters.
Output
Print the answer to each query.
Examples
Input #1
Answer #1
Submissions 32
Acceptance rate 34%