CF BUDDY
← Problems·

1593C · Save More Mice

1000 · binary search, greedy

Problem: There are one cat, kk mice, and one hole on a coordinate line. The cat is located at the point 00, the hole is located at the point nn. All mice are located between the cat and the hole: the ii-th mouse is located at the point xix_i (0<xi<n0 < x_i < n). At each point, many mice can be located.

In one second, the following happens. First, exactly one mouse moves to the right by 11. 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 11. 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?

Input Format: The first line contains one integer tt (1t1041 \le t \le 10^4) — the number of test cases. Then tt test cases follow.

Each test case consists of two lines. The first line contains two integers nn and kk (2n1092 \le n \le 10^9, 1k41051 \le k \le 4 \cdot 10^5). The second line contains kk integers x1,x2,xkx_1, x_2, \dots x_k (1xi<n1 \le x_i < n) — the initial coordinates of the mice.

It is guaranteed that the sum of all kk given in the input doesn't exceed 41054 \cdot 10^5.

Output Format: For each test case output on a separate line an integer mm (m0m \ge 0) — the maximum number of mice that can reach the hole without being eaten.

Sample Cases

Case 1

Input

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

Output

3
1
4

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback