A13042 | Too Many Segments (hard version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The only difference between easy and hard versions is constraints.
You are given $n$ segments on the coordinate axis $OX$ . Segments can intersect, lie inside each other and even coincide. The $i$ -th segment is $[l_i; r_i]$ ( $l_i \le r_i$ ) and it covers all integer points $j$ such that $l_i \le j \le r_i$ .
The integer point is called bad if it is covered by strictly more than $k$ segments.
Your task is to remove the minimum number of segments so that there are no bad points at all.
You are given $n$ segments on the coordinate axis $OX$ . Segments can intersect, lie inside each other and even coincide. The $i$ -th segment is $[l_i; r_i]$ ( $l_i \le r_i$ ) and it covers all integer points $j$ such that $l_i \le j \le r_i$ .
The integer point is called bad if it is covered by strictly more than $k$ segments.
Your task is to remove the minimum number of segments so that there are no bad points at all.
输入格式
The first line of the input contains two integers $n$ and $k$ ( $1 \le k \le n \le 2 \cdot 10^5$ ) — the number of segments and the maximum number of segments by which each integer point can be covered.
The next $n$ lines contain segments. The $i$ -th line contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le 2 \cdot 10^5$ ) — the endpoints of the $i$ -th segment.
The next $n$ lines contain segments. The $i$ -th line contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le 2 \cdot 10^5$ ) — the endpoints of the $i$ -th segment.
输出格式
In the first line print one integer $m$ ( $0 \le m \le n$ ) — the minimum number of segments you need to remove so that there are no bad points.
In the second line print $m$ distinct integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i \le n$ ) — indices of segments you remove in any order. If there are multiple answers, you can print any of them.
In the second line print $m$ distinct integers $p_1, p_2, \dots, p_m$ ( $1 \le p_i \le n$ ) — indices of segments you remove in any order. If there are multiple answers, you can print any of them.
输入输出样例
输入 #1
7 2 11 11 9 11 7 8 8 9 7 8 9 11 7 9
输出 #1
3 4 6 7
输入 #2
5 1 29 30 30 30 29 29 28 30 30 30
输出 #2
3 1 4 5
输入 #3
6 1 2 3 3 3 2 3 2 2 2 3 2 3
输出 #3
4 1 3 5 6
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted