6701.Movie Festival

Time Limit: 1s Memory Limit: 512MB

In a movie festival $n$ movies will be shown. You know the starting and ending time of each movie. What is the maximum number of movies you can watch entirely?

Input Format(From the terminal/stdin)

The first input line has an integer $n$ : the number of movies.

After this, there are $n$ lines that describe the movies. Each line has two integers $a$ and $b$ : the starting and ending times of a movie.

  • $1 \le n \le 2 \cdot 10^5$
  • $1 \le a < b \le 10^9$

Output Format(To the terminal/stdout)

Print one integer: the maximum number of movies.

Sample Input

Copy
3
3 5
4 9
5 8
 \n
 · \n
 · \n
 · \n

Sample Output

Copy
2
 \n
Source: CSES, Sorting and Searching, 1629

Submit

请先 登录

© 2025 FAQs