#Lutece0780. Multikill

Multikill

Migrated from Lutece 780 Multikill

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

The Zombie Apocalypse is here! Zombies are quite easy to kill; however, ammunition is scarce so we need to maximize the explosive potential. Our most powerful defensive weapon is an automated grenade launcher that can identify zombified targets at extreme distances. The one missing piece is the code for optimizing the blasts to hit multiple targets.

For each known group of zombies, you will be given a kill radius and the locations of the zombies. The program should identify a coordinate to hit with the explosive to kill as many zombies as possible and output the maximum number of targets that can be killed with one round. A zombie will be killed if its distance from the explosive is equal to or less than the kill radius.

Input

he first line of input will contain an integer representing the number of test cases, C(1C20)C (1 \leq C \leq 20). For each test case, there will be a single line containing a kill radius as a real number, R(0<R1000.0)R (0 < R \leq 1000.0), and a count of zombie targets, N(0N25)N (0 \leq N \leq 25), followed by N lines containing a pair of Cartesian coordinates XX Y(106X,Y106)Y (-10^6 \leq X, Y \leq 10^6) giving each zombie position. The units used for the kill radius and the coordinates are both in meters.

CC

RR NN

X0X_0 Y0Y_0

\cdots

XN1X_{N-1} YN1Y_{N-1}

Output

Output will be a single line per test case with the number of targets that can be killed with a single explosive round. Output for each test case should be on its own line.

K0K_0

\cdots

KC1K_{C-1}

Samples

2
3 5
1 0
0 0
0 1
1 1
5 5
1.0 1
1.0 0.0
4
1

Resources

2013 ACM ICPC South Central USA Regional Programming Contest