301616: CF306B. Optimizer

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Optimizer

题意翻译

给你$n$个数,有$m$次操作,每次操作时输入两个数$a_i$和$l_i$,代表在第$a_i$个数与它右边连续$l_i$个数都变成$13$。 现在有一个优化器,想要删除尽量多的指令,而且整个数组都有赋值$13$。 $1\leq n\leq 2\times10^6,1\leq m\leq 2\times10^5$。 求你删除的指令个数与删除指令的编号。

题目描述

A process RAM is a sequence of bytes that are indexed from 1 to $ n $ . Polycarpus's program contains such instructions as "memset", that is, the operations of filling memory cells on a segment with some value. The details are: the code only contains $ m $ instructions that look like "set13 a\_i l\_i". Instruction $ i $ fills a continuous memory segment of length $ l_{i} $ , starting from cell number $ a_{i} $ , (that it cells with numbers $ a_{i},a_{i}+1,...,a_{i+li}-1 $ ) with values 13. In Polycarpus's code, the optimizer's task is to remove the maximum number of instructions from his code in such a way that the remaining instructions set value 13 in all the memory bytes that got this value from the code before the optimization. Also, the value 13 should be set only in the memory bytes that got this value from the code before the optimization. Your task is to implement the optimizer for such program.

输入输出格式

输入格式


The first line contains integers $ n $ and $ m $ ( $ 1<=n<=2·10^{6},1<=m<=2·10^{5} $ ) — the number of bytes (memory cells) and the number of instructions in Polycarpus's code. Then $ m $ lines follow, each line contains a pair of integers $ a_{i} $ , $ l_{i} $ ( $ 1<=a_{i}<=n,1<=l_{i}<=n-a_{i}+1 $ ).

输出格式


Print in the first line the sought maximum number of instructions that can be removed from the code. In the second line print the numbers of the instructions. The instructions are numbered from 1 to $ m $ in the order they appeared in the input. If there are multiple solutions, print any of them.

输入输出样例

输入样例 #1

10 4
3 3
3 1
4 1
9 2

输出样例 #1

2
2 3 

输入样例 #2

1 1
1 1

输出样例 #2

0

Input

题意翻译

给你$n$个数,有$m$次操作,每次操作时输入两个数$a_i$和$l_i$,代表在第$a_i$个数与它右边连续$l_i$个数都变成$13$。 现在有一个优化器,想要删除尽量多的指令,而且整个数组都有赋值$13$。 $1\leq n\leq 2\times10^6,1\leq m\leq 2\times10^5$。 求你删除的指令个数与删除指令的编号。

加入题单

算法标签: