#P1238B. Kill 'Em All

Kill 'Em All

No submission language available for this problem.

Description

Ivan plays an old action game called Heretic. He's stuck on one of the final levels of this game, so he needs some help with killing the monsters.

The main part of the level is a large corridor (so large and narrow that it can be represented as an infinite coordinate line). The corridor is divided into two parts; let's assume that the point x=0x = 0 is where these parts meet.

The right part of the corridor is filled with nn monsters — for each monster, its initial coordinate xix_i is given (and since all monsters are in the right part, every xix_i is positive).

The left part of the corridor is filled with crusher traps. If some monster enters the left part of the corridor or the origin (so, its current coordinate becomes less than or equal to 00), it gets instantly killed by a trap.

The main weapon Ivan uses to kill the monsters is the Phoenix Rod. It can launch a missile that explodes upon impact, obliterating every monster caught in the explosion and throwing all other monsters away from the epicenter. Formally, suppose that Ivan launches a missile so that it explodes in the point cc. Then every monster is either killed by explosion or pushed away. Let some monster's current coordinate be yy, then:

  • if c=yc = y, then the monster is killed;
  • if y<cy < c, then the monster is pushed rr units to the left, so its current coordinate becomes yry - r;
  • if y>cy > c, then the monster is pushed rr units to the right, so its current coordinate becomes y+ry + r.

Ivan is going to kill the monsters as follows: choose some integer point dd and launch a missile into that point, then wait until it explodes and all the monsters which are pushed to the left part of the corridor are killed by crusher traps, then, if at least one monster is still alive, choose another integer point (probably the one that was already used) and launch a missile there, and so on.

What is the minimum number of missiles Ivan has to launch in order to kill all of the monsters? You may assume that every time Ivan fires the Phoenix Rod, he chooses the impact point optimally.

You have to answer qq independent queries.

The first line contains one integer qq (1q1051 \le q \le 10^5) — the number of queries.

The first line of each query contains two integers nn and rr (1n,r1051 \le n, r \le 10^5) — the number of enemies and the distance that the enemies are thrown away from the epicenter of the explosion.

The second line of each query contains nn integers xix_i (1xi1051 \le x_i \le 10^5) — the initial positions of the monsters.

It is guaranteed that sum of all nn over all queries does not exceed 10510^5.

For each query print one integer — the minimum number of shots from the Phoenix Rod required to kill all monsters.

Input

The first line contains one integer qq (1q1051 \le q \le 10^5) — the number of queries.

The first line of each query contains two integers nn and rr (1n,r1051 \le n, r \le 10^5) — the number of enemies and the distance that the enemies are thrown away from the epicenter of the explosion.

The second line of each query contains nn integers xix_i (1xi1051 \le x_i \le 10^5) — the initial positions of the monsters.

It is guaranteed that sum of all nn over all queries does not exceed 10510^5.

Output

For each query print one integer — the minimum number of shots from the Phoenix Rod required to kill all monsters.

Samples

Sample Input 1

2
3 2
1 3 5
4 1
5 2 3 5

Sample Output 1

2
2

Note

In the first test case, Ivan acts as follows:

  • choose the point 33, the first monster dies from a crusher trap at the point 1-1, the second monster dies from the explosion, the third monster is pushed to the point 77;
  • choose the point 77, the third monster dies from the explosion.

In the second test case, Ivan acts as follows:

  • choose the point 55, the first and fourth monsters die from the explosion, the second monster is pushed to the point 11, the third monster is pushed to the point 22;
  • choose the point 22, the first monster dies from a crusher trap at the point 00, the second monster dies from the explosion.