Preparando MOJI

Destiny

2000ms 524288K

Description:

Once, Leha found in the left pocket an array consisting of n integers, and in the right pocket q queries of the form l r k. If there are queries, then they must be answered. Answer for the query is minimal x such that x occurs in the interval l r strictly more than times or  - 1 if there is no such number. Help Leha with such a difficult task.

Input:

First line of input data contains two integers n and q (1 ≤ n, q ≤ 3·105) — number of elements in the array and number of queries respectively.

Next line contains n integers a1, a2, ..., an (1 ≤ ai ≤ n) — Leha's array.

Each of next q lines contains three integers l, r and k (1 ≤ l ≤ r ≤ n, 2 ≤ k ≤ 5) — description of the queries.

Output:

Output answer for each query in new line.

Sample Input:

4 2
1 1 2 2
1 3 2
1 4 2

Sample Output:

1
-1

Sample Input:

5 3
1 2 1 3 2
2 5 3
1 2 3
5 5 2

Sample Output:

2
1
2

Informação

Codeforces

Provedor Codeforces

Código CF840D

Tags

data structuresprobabilities

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 09:17:30

Relacionados

Nada ainda