CF1932F.Feed Cats
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There is a fun game where you need to feed cats that come and go. The level of the game consists of n steps. There are m cats; the cat i is present in steps from li to ri , inclusive. In each step, you can feed all the cats that are currently present or do nothing.
If you feed the same cat more than once, it will overeat, and you will immediately lose the game. Your goal is to feed as many cats as possible without causing any cat to overeat.
Find the maximum number of cats you can feed.
Formally, you need to select several integer points from the segment from 1 to n in such a way that among given segments, none covers two or more of the selected points, and as many segments as possible cover one of the selected points.
输入格式
The first line of input contains a single integer t ( 1≤t≤104 ) — the number of test cases. Then the descriptions of the test cases follow.
The first line of each test case contains two integers n and m ( 1≤n≤106 , 1≤m≤2⋅105 ).
The i -th of the next m lines contains a pair of integers li and ri ( 1≤li≤ri≤n ).
The sum of n for all tests does not exceed 106 , the sum of m for all tests does not exceed 2⋅105 .
输出格式
For each test case, print a single integer, the maximum number of cats you can feed.
输入输出样例
输入#1
3 15 6 2 10 3 5 2 4 7 7 8 12 11 11 1000 1 1 1000 5 10 1 2 3 4 3 4 3 4 3 4 1 1 1 2 3 3 3 4 3 4
输出#1
5 1 10
说明/提示
In the first example, one of the ways to feed five cats is to feed at steps 4 and 11 .
- At step 4 , cats 1 , 2 , and 3 will be fed.
- At step 11 , cats 5 and 6 will be fed.