CF1900F.Local Deletions

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

For an array b1,b2,,bmb_1, b_2, \ldots, b_m , for some ii ( 1<i<m1 < i < m ), element bib_i is said to be a local minimum if bi<bi1b_i < b_{i-1} and bi<bi+1b_i < b_{i+1} . Element b1b_1 is said to be a local minimum if b1<b2b_1 < b_2 . Element bmb_m is said to be a local minimum if bm<bm1b_m < b_{m-1} .

For an array b1,b2,,bmb_1, b_2, \ldots, b_m , for some ii ( 1<i<m1 < i < m ), element bib_i is said to be a local maximum if bi>bi1b_i > b_{i-1} and bi>bi+1b_i > b_{i+1} . Element b1b_1 is said to be a local maximum if b1>b2b_1 > b_2 . Element bmb_m is said to be a local maximum if bm>bm1b_m > b_{m-1} .

Let xx be an array of distinct elements. We define two operations on it:

  • 11 — delete all elements from xx that are not local minima.
  • 22 — delete all elements from xx that are not local maxima.

Define f(x)f(x) as follows. Repeat operations 1,2,1,2,1, 2, 1, 2, \ldots in that order until you get only one element left in the array. Return that element.

For example, take an array [1,3,2][1,3,2] . We will first do type 11 operation and get [1,2][1, 2] . Then we will perform type 22 operation and get [2][2] . Therefore, f([1,3,2])=2f([1,3,2]) = 2 .

You are given a permutation ^\dagger aa of size nn and qq queries. Each query consists of two integers ll and rr such that 1lrn1 \le l \le r \le n . The query asks you to compute f([al,al+1,,ar])f([a_l, a_{l+1}, \ldots, a_r]) .

^\dagger A permutation of length nn is an array of nn distinct integers from 11 to nn in arbitrary order. For example, [2,3,1,5,4][2,3,1,5,4] is a permutation, but [1,2,2][1,2,2] is not a permutation ( 22 appears twice in the array), and [1,3,4][1,3,4] is also not a permutation ( n=3n=3 , but there is 44 in the array).

输入格式

The first line contains two integers nn and qq ( 1n,q1051 \le n, q \le 10^5 ) — the length of the permutation aa and the number of queries.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ain1 \le a_i \le n ) — the elements of permutation aa .

The ii -th of the next qq lines contains two integers lil_i and rir_i ( 1lirin1 \le l_i \le r_i \le n ) — the description of ii -th query.

输出格式

For each query, output a single integer — the answer to that query.

输入输出样例

  • 输入#1

    7 5
    1 4 3 6 2 7 5
    1 1
    1 2
    2 3
    1 4
    1 7

    输出#1

    1
    1
    3
    3
    3
  • 输入#2

    10 1
    1 2 3 4 5 6 7 8 9 10
    1 10

    输出#2

    1

说明/提示

In the first query of the first example, the only number in the subarray is 11 , therefore it is the answer.

In the second query of the first example, our subarray initially looks like [1,4][1, 4] . After performing type 11 operation we get [1][1] .

In the third query of the first example, our subarray initially looks like [4,3][4, 3] . After performing type 11 operation we get [3][3] .

In the fourth query of the first example, our subarray initially looks like [1,4,3,6][1, 4, 3, 6] . After performing type 11 operation we get [1,3][1, 3] . Then we perform type 22 operation and we get [3][3] .

In the fifth query of the first example, our subarray initially looks like [1,4,3,6,2,7,5][1, 4, 3, 6, 2, 7, 5] . After performing type 11 operation we get [1,3,2,5][1,3,2,5] . After performing type 22 operation we get [3,5][3,5] . Then we perform type 11 operation and we get [3][3] .

In the first and only query of the second example our subarray initially looks like [1,2,3,4,5,6,7,8,9,10][1,2,3,4,5,6,7,8,9,10] . Here 11 is the only local minimum, so only it is left after performing type 11 operation.

首页