传统题 1000ms 256MiB

C - Prison

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

C - Prison

Score : $300$ points

Problem Statement

We have $N$ ID cards, and there are $M$ gates.

We can pass the $i$-th gate if we have one of the following ID cards: the $L_i$-th, $(L_i+1)$-th, ..., and $R_i$-th ID cards.

How many of the ID cards allow us to pass all the gates alone?

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 10^5$
  • $1 \leq M \leq 10^5$
  • $1 \leq L_i \leq R_i \leq N$

Input

Input is given from Standard Input in the following format:

NN MM

L1L_1 R1R_1

L2L_2 R2R_2

\vdots

LML_M RMR_M

Output

Print the number of ID cards that allow us to pass all the gates alone.


4 2
1 3
2 4
2

Two ID cards allow us to pass all the gates alone, as follows:

  • The first ID card does not allow us to pass the second gate.
  • The second ID card allows us to pass all the gates.
  • The third ID card allows us to pass all the gates.
  • The fourth ID card does not allow us to pass the first gate.

10 3
3 6
5 7
6 9
1

100000 1
1 100000
100000

2024春季入门组刷题营(一)

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