CF1508F.Optimal Encoding

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Touko's favorite sequence of numbers is a permutation a1,a2,,ana_1, a_2, \dots, a_n of 1,2,,n1, 2, \dots, n , and she wants some collection of permutations that are similar to her favorite permutation.

She has a collection of qq intervals of the form [li,ri][l_i, r_i] with 1lirin1 \le l_i \le r_i \le n . To create permutations that are similar to her favorite permutation, she coined the following definition:

  • A permutation b1,b2,,bnb_1, b_2, \dots, b_n allows an interval [l,r][l', r'] to holds its shape if for any pair of integers (x,y)(x, y) such that lx<yrl' \le x < y \le r' , we have bx<byb_x < b_y if and only if ax<aya_x < a_y .
  • A permutation b1,b2,,bnb_1, b_2, \dots, b_n is kk -similar if bb allows all intervals [li,ri][l_i, r_i] for all 1ik1 \le i \le k to hold their shapes.

Yuu wants to figure out all kk -similar permutations for Touko, but it turns out this is a very hard task; instead, Yuu will encode the set of all kk -similar permutations with directed acylic graphs (DAG). Yuu also coined the following definitions for herself:

  • A permutation b1,b2,,bnb_1, b_2, \dots, b_n satisfies a DAG GG' if for all edge uvu \to v in GG' , we must have bu<bvb_u < b_v .
  • A kk -encoding is a DAG GkG_k on the set of vertices 1,2,,n1, 2, \dots, n such that a permutation b1,b2,,bnb_1, b_2, \dots, b_n satisfies GkG_k if and only if bb is kk -similar.

Since Yuu is free today, she wants to figure out the minimum number of edges among all kk -encodings for each kk from 11 to qq .

输入格式

The first line contains two integers nn and qq ( 1n250001 \le n \le 25\,000 , 1q1000001 \le q \le 100\,000 ).

The second line contains nn integers a1,a2,,ana_1, a_2, \dots, a_n which form a permutation of 1,2,,n1, 2, \dots, n .

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

输出格式

Print qq lines. The kk -th of them should contain a single integer — The minimum number of edges among all kk -encodings.

输入输出样例

  • 输入#1

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

    输出#1

    2
    4
    3
  • 输入#2

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

    输出#2

    3
    5
    9
    7
  • 输入#3

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

    输出#3

    0
    1
    3
    6
    6
    9
    9
    9
    9
    8

说明/提示

For the first test case:

  • All 11 -similar permutations must allow the interval [1,3][1, 3] to hold its shape. Therefore, the set of all 11 -similar permutations is {[3,4,2,1],[3,4,1,2],[2,4,1,3],[2,3,1,4]}\{[3, 4, 2, 1], [3, 4, 1, 2], [2, 4, 1, 3], [2, 3, 1, 4]\} . The optimal encoding of these permutations is
  • All 22 -similar permutations must allow the intervals [1,3][1, 3] and [2,4][2, 4] to hold their shapes. Therefore, the set of all 22 -similar permutations is {[3,4,1,2],[2,4,1,3]}\{[3, 4, 1, 2], [2, 4, 1, 3]\} . The optimal encoding of these permutations is
  • All 33 -similar permutations must allow the intervals [1,3][1, 3] , [2,4][2, 4] , and [1,4][1, 4] to hold their shapes. Therefore, the set of all 33 -similar permutations only includes [2,4,1,3][2, 4, 1, 3] . The optimal encoding of this permutation is
首页