A12269 | Array and Segments (Hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The only difference between easy and hard versions is a number of elements in the array.
You are given an array $a$ consisting of $n$ integers. The value of the $i$ -th element of the array is $a_i$ .
You are also given a set of $m$ segments. The $j$ -th segment is $[l_j; r_j]$ , where $1 \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]$ and the given segments are $[1; 3]$ and $[2; 4]$ then you can choose both of them and the array will become $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 $a$ and obtain the array $b$ then the value $\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.
You are given an array $a$ consisting of $n$ integers. The value of the $i$ -th element of the array is $a_i$ .
You are also given a set of $m$ segments. The $j$ -th segment is $[l_j; r_j]$ , where $1 \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]$ and the given segments are $[1; 3]$ and $[2; 4]$ then you can choose both of them and the array will become $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 $a$ and obtain the array $b$ then the value $\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 $n$ and $m$ ( $1 \le n \le 10^5, 0 \le m \le 300$ ) — the length of the array $a$ and the number of segments, respectively.
The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ( $-10^6 \le a_i \le 10^6$ ), where $a_i$ is the value of the $i$ -th element of the array $a$ .
The next $m$ lines are contain two integers each. The $j$ -th of them contains two integers $l_j$ and $r_j$ ( $1 \le l_j \le r_j \le n$ ), where $l_j$ and $r_j$ are the ends of the $j$ -th segment.
The second line of the input contains $n$ integers $a_1, a_2, \dots, a_n$ ( $-10^6 \le a_i \le 10^6$ ), where $a_i$ is the value of the $i$ -th element of the array $a$ .
The next $m$ lines are contain two integers each. The $j$ -th of them contains two integers $l_j$ and $r_j$ ( $1 \le l_j \le r_j \le n$ ), where $l_j$ and $r_j$ are the ends of the $j$ -th segment.
输出格式
In the first line of the output print one integer $d$ — the maximum possible value $\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i$ if $b$ is the array obtained by applying some subset of the given segments to the array $a$ .
In the second line of the output print one integer $q$ ( $0 \le q \le m$ ) — the number of segments you apply.
In the third line print $q$ distinct integers $c_1, c_2, \dots, c_q$ in any order ( $1 \le c_k \le m$ ) — indices of segments you apply to the array $a$ in such a way that the value $\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i$ of the obtained array $b$ is maximum possible.
If there are multiple answers, you can print any.
In the second line of the output print one integer $q$ ( $0 \le q \le m$ ) — the number of segments you apply.
In the third line print $q$ distinct integers $c_1, c_2, \dots, c_q$ in any order ( $1 \le c_k \le m$ ) — indices of segments you apply to the array $a$ in such a way that the value $\max\limits_{i=1}^{n}b_i - \min\limits_{i=1}^{n}b_i$ of the obtained array $b$ 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 $b$ will be $[0, -4, 1, 1, 2]$ so the answer is $6$ .
In the second example the obtained array $b$ will be $[2, -3, 1, -1, 4]$ so the answer is $7$ .
In the third example you cannot do anything so the answer is $0$ .
In the second example the obtained array $b$ will be $[2, -3, 1, -1, 4]$ so the answer is $7$ .
In the third example you cannot do anything so the answer is $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted