#P1179A. Valeriy and Deque
Valeriy and Deque
No submission language available for this problem.
Description
Recently, on the course of algorithms and data structures, Valeriy learned how to use a deque. He built a deque filled with elements. The -th element is ( = ). He gradually takes the first two leftmost elements from the deque (let's call them and , respectively), and then does the following: if , he writes to the beginning and writes to the end of the deque, otherwise, he writes to the beginning , and writes to the end of the deque. We call this sequence of actions an operation.
For example, if deque was , on the operation he will write to the beginning and to the end, so he will get .
The teacher of the course, seeing Valeriy, who was passionate about his work, approached him and gave him queries. Each query consists of the singular number . It is required for each query to answer which two elements he will pull out on the -th operation.
Note that the queries are independent and for each query the numbers and should be printed in the order in which they will be pulled out of the deque.
Deque is a data structure representing a list of elements where insertion of new elements or deletion of existing elements can be made from both sides.
The first line contains two integers and (, ) — the number of elements in the deque and the number of queries. The second line contains integers , , ..., , where — the deque element in -th position. The next lines contain one number each, meaning ().
For each teacher's query, output two numbers and — the numbers that Valeriy pulls out of the deque for the -th operation.
Input
The first line contains two integers and (, ) — the number of elements in the deque and the number of queries. The second line contains integers , , ..., , where — the deque element in -th position. The next lines contain one number each, meaning ().
Output
For each teacher's query, output two numbers and — the numbers that Valeriy pulls out of the deque for the -th operation.
Samples
Note
- Consider all 10 steps for the first test in detail:
- — on the first operation, and are and , respectively.
So, we write to the beginning of the deque, and — to the end.
We get the following status of the deque: .
- .
- .