CF1593C.Save More Mice
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are one cat, k mice, and one hole on a coordinate line. The cat is located at the point 0 , the hole is located at the point n . All mice are located between the cat and the hole: the i -th mouse is located at the point xi ( 0<xi<n ). At each point, many mice can be located.
In one second, the following happens. First, exactly one mouse moves to the right by 1 . If the mouse reaches the hole, it hides (i.e. the mouse will not any more move to any point and will not be eaten by the cat). Then (after that the mouse has finished its move) the cat moves to the right by 1 . If at the new cat's position, some mice are located, the cat eats them (they will not be able to move after that). The actions are performed until any mouse hasn't been hidden or isn't eaten.
In other words, the first move is made by a mouse. If the mouse has reached the hole, it's saved. Then the cat makes a move. The cat eats the mice located at the pointed the cat has reached (if the cat has reached the hole, it eats nobody).
Each second, you can select a mouse that will make a move. What is the maximum number of mice that can reach the hole without being eaten?
输入格式
The first line contains one integer t ( 1≤t≤104 ) — the number of test cases. Then t test cases follow.
Each test case consists of two lines. The first line contains two integers n and k ( 2≤n≤109 , 1≤k≤4⋅105 ). The second line contains k integers x1,x2,…xk ( 1≤xi<n ) — the initial coordinates of the mice.
It is guaranteed that the sum of all k given in the input doesn't exceed 4⋅105 .
输出格式
For each test case output on a separate line an integer m ( m≥0 ) — the maximum number of mice that can reach the hole without being eaten.
输入输出样例
输入#1
3 10 6 8 7 5 4 9 4 2 8 1 1 1 1 1 1 1 1 12 11 1 2 3 4 5 6 7 8 9 10 11
输出#1
3 1 4