CF BUDDY
← Problems·

1557D · Ezzat and Grid

2200 · data structures, dp, greedy

Problem: Moamen was drawing a grid of nn rows and 10910^9 columns containing only digits 00 and 11. Ezzat noticed what Moamen was drawing and became interested in the minimum number of rows one needs to remove to make the grid beautiful.

A grid is beautiful if and only if for every two consecutive rows there is at least one column containing 11 in these two rows.

Ezzat will give you the number of rows nn, and mm segments of the grid that contain digits 11. Every segment is represented with three integers ii, ll, and rr, where ii represents the row number, and ll and rr represent the first and the last column of the segment in that row.

For example, if n=3n = 3, m=6m = 6, and the segments are (1,1,1)(1,1,1), (1,7,8)(1,7,8), (2,7,7)(2,7,7), (2,15,15)(2,15,15), (3,1,1)(3,1,1), (3,15,15)(3,15,15), then the grid is:

Your task is to tell Ezzat the minimum number of rows that should be removed to make the grid beautiful.

Input Format: The first line contains two integers nn and mm (1n,m31051 \le n, m \le 3\cdot10^5).

Each of the next mm lines contains three integers ii, ll, and rr (1in1 \le i \le n, 1lr1091 \le l \le r \le 10^9). Each of these mm lines means that row number ii contains digits 11 in columns from ll to rr, inclusive.

Note that the segments may overlap.

Output Format: In the first line, print a single integer kk — the minimum number of rows that should be removed.

In the second line print kk distinct integers r1,r2,,rkr_1, r_2, \ldots, r_k, representing the rows that should be removed (1rin1 \le r_i \le n), in any order.

If there are multiple answers, print any.

Note: In the first test case, the grid is the one explained in the problem statement. The grid has the following properties:

  1. The 11-st row and the 22-nd row have a common 11 in the column 77.
  2. The 22-nd row and the 33-rd row have a common 11 in the column 1515.

In the second test case, the given grid is as follows:

Sample Cases

Case 1

Input

3 6
1 1 1
1 7 8
2 7 7
2 15 15
3 1 1
3 15 15

Output

0

Case 2

Input

5 4
1 2 3
2 4 6
3 3 5
5 1 1

Output

3
2 4 5

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