传统题 1000ms 256MiB

D - Islands War

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

D - Islands War

Score : $400$ points

Problem Statement

There are $N$ islands lining up from west to east, connected by $N-1$ bridges.

The $i$-th bridge connects the $i$-th island from the west and the $(i+1)$-th island from the west.

One day, disputes took place between some islands, and there were $M$ requests from the inhabitants of the islands:

Request $i$: A dispute took place between the $a_i$-th island from the west and the $b_i$-th island from the west. Please make traveling between these islands with bridges impossible.

You decided to remove some bridges to meet all these $M$ requests.

Find the minimum number of bridges that must be removed.

Constraints

  • All values in input are integers.
  • $2 \leq N \leq 10^5$
  • $1 \leq M \leq 10^5$
  • $1 \leq a_i < b_i \leq N$
  • All pairs $(a_i, b_i)$ are distinct.

Input

Input is given from Standard Input in the following format:

NN MM

a1a_1 b1b_1

a2a_2 b2b_2

::

aMa_M bMb_M

Output

Print the minimum number of bridges that must be removed.


5 2
1 4
2 5
1

The requests can be met by removing the bridge connecting the second and third islands from the west.


9 5
1 8
2 7
3 5
4 6
7 9
2

5 10
1 2
1 3
1 4
1 5
2 3
2 4
2 5
3 4
3 5
4 5
4

2024寒假入门组刷题营(七)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-4 13:30
结束于
2024-2-4 15:30
持续时间
2 小时
主持人
参赛人数
10