CF BUDDY
← Problems·

1108E1 · Array and Segments (Easy version)

1800 · brute force, greedy, implementation

Problem: 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.

Input Format: The first line of the input contains two integers nn and mm (1n300,0m3001 \le n \le 300, 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.

Output Format: 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.

Note: 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.

Sample Cases

Case 1

Input

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

Output

6
2
1 4

Case 2

Input

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

Output

7
2
3 2

Case 3

Input

1 0
1000000

Output

0
0

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback