#P1179A. Valeriy and Deque

    ID: 4808 Type: RemoteJudge 6000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>data structuresimplementation*1500

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 nn elements. The ii-th element is aia_i (ii = 1,2,,n1, 2, \ldots, n). He gradually takes the first two leftmost elements from the deque (let's call them AA and BB, respectively), and then does the following: if A>BA > B, he writes AA to the beginning and writes BB to the end of the deque, otherwise, he writes to the beginning BB, and AA writes to the end of the deque. We call this sequence of actions an operation.

For example, if deque was [2,3,4,5,1][2, 3, 4, 5, 1], on the operation he will write B=3B=3 to the beginning and A=2A=2 to the end, so he will get [3,4,5,1,2][3, 4, 5, 1, 2].

The teacher of the course, seeing Valeriy, who was passionate about his work, approached him and gave him qq queries. Each query consists of the singular number mjm_j (j=1,2,,q)(j = 1, 2, \ldots, q). It is required for each query to answer which two elements he will pull out on the mjm_j-th operation.

Note that the queries are independent and for each query the numbers AA and BB 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 nn and qq (2n1052 \leq n \leq 10^5, 0q31050 \leq q \leq 3 \cdot 10^5) — the number of elements in the deque and the number of queries. The second line contains nn integers a1a_1, a2a_2, ..., ana_n, where aia_i (0ai109)(0 \leq a_i \leq 10^9) — the deque element in ii-th position. The next qq lines contain one number each, meaning mjm_j (1mj10181 \leq m_j \leq 10^{18}).

For each teacher's query, output two numbers AA and BB — the numbers that Valeriy pulls out of the deque for the mjm_j-th operation.

Input

The first line contains two integers nn and qq (2n1052 \leq n \leq 10^5, 0q31050 \leq q \leq 3 \cdot 10^5) — the number of elements in the deque and the number of queries. The second line contains nn integers a1a_1, a2a_2, ..., ana_n, where aia_i (0ai109)(0 \leq a_i \leq 10^9) — the deque element in ii-th position. The next qq lines contain one number each, meaning mjm_j (1mj10181 \leq m_j \leq 10^{18}).

Output

For each teacher's query, output two numbers AA and BB — the numbers that Valeriy pulls out of the deque for the mjm_j-th operation.

Samples

Sample Input 1

5 3
1 2 3 4 5
1
2
10

Sample Output 1

1 2
2 3
5 2

Sample Input 2

2 0
0 0

Sample Output 2


Note

    Consider all 10 steps for the first test in detail:
  1. [1,2,3,4,5][1, 2, 3, 4, 5] — on the first operation, AA and BB are 11 and 22, respectively.

    So, 22 we write to the beginning of the deque, and 11 — to the end.

    We get the following status of the deque: [2,3,4,5,1][2, 3, 4, 5, 1].

  2. [2,3,4,5,1]A=2,B=3[2, 3, 4, 5, 1] \Rightarrow A = 2, B = 3.
  3. [3,4,5,1,2][3, 4, 5, 1, 2]
  4. [4,5,1,2,3][4, 5, 1, 2, 3]
  5. [5,1,2,3,4][5, 1, 2, 3, 4]
  6. [5,2,3,4,1][5, 2, 3, 4, 1]
  7. [5,3,4,1,2][5, 3, 4, 1, 2]
  8. [5,4,1,2,3][5, 4, 1, 2, 3]
  9. [5,1,2,3,4][5, 1, 2, 3, 4]
  10. [5,2,3,4,1]A=5,B=2[5, 2, 3, 4, 1] \Rightarrow A = 5, B = 2.