CF1108E2.Array and Segments (Hard version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The only difference between easy and hard versions is a number of elements in the array.

You are given an array aa consisting of nn integers. The value of the ii -th element of the array is aia_i .

You are also given a set of mm segments. The jj -th segment is [lj;rj][l_j; r_j] , where 1ljrjn1 \le l_j \le r_j \le n .

You can choose some subset of the given set of segments and decrease values on each of the chosen segments by one (independently). For example, if the initial array a=[0,0,0,0,0]a = [0, 0, 0, 0, 0] and the given segments are [1;3][1; 3] and [2;4][2; 4] then you can choose both of them and the array will become b=[1,2,2,1,0]b = [-1, -2, -2, -1, 0] .

You have to choose some subset of the given segments (each segment can be chosen at most once) in such a way that if you apply this subset of segments to the array aa and obtain the array bb then the value maxi=1nbimini=1nbi\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i will be maximum possible.

Note that you can choose the empty set.

If there are multiple answers, you can print any.

If you are Python programmer, consider using PyPy instead of Python when you submit your code.

输入格式

The first line of the input contains two integers nn and mm ( 1n105,0m3001 \le n \le 10^5, 0 \le m \le 300 ) — the length of the array aa and the number of segments, respectively.

The second line of the input contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 106ai106-10^6 \le a_i \le 10^6 ), where aia_i is the value of the ii -th element of the array aa .

The next mm lines are contain two integers each. The jj -th of them contains two integers ljl_j and rjr_j ( 1ljrjn1 \le l_j \le r_j \le n ), where ljl_j and rjr_j are the ends of the jj -th segment.

输出格式

In the first line of the output print one integer dd — the maximum possible value maxi=1nbimini=1nbi\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i if bb is the array obtained by applying some subset of the given segments to the array aa .

In the second line of the output print one integer qq ( 0qm0 \le q \le m ) — the number of segments you apply.

In the third line print qq distinct integers c1,c2,,cqc_1, c_2, \dots, c_q in any order ( 1ckm1 \le c_k \le m ) — indices of segments you apply to the array aa in such a way that the value maxi=1nbimini=1nbi\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i of the obtained array bb is maximum possible.

If there are multiple answers, you can print any.

输入输出样例

  • 输入#1

    5 4
    2 -2 3 1 2
    1 3
    4 5
    2 5
    1 3
    

    输出#1

    6
    2
    4 1 
    
  • 输入#2

    5 4
    2 -2 3 1 4
    3 5
    3 4
    2 4
    2 5
    

    输出#2

    7
    2
    3 2 
    
  • 输入#3

    1 0
    1000000
    

    输出#3

    0
    0
    
    

说明/提示

In the first example the obtained array bb will be [0,4,1,1,2][0, -4, 1, 1, 2] so the answer is 66 .

In the second example the obtained array bb will be [2,3,1,1,4][2, -3, 1, -1, 4] so the answer is 77 .

In the third example you cannot do anything so the answer is 00 .

首页