#Lutece0316. Detectors

Detectors

Migrated from Lutece 316 Detectors

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

In every classroom in UESTC, a lot of detectors was suspended from the ceiling above us (see in the picture below).

Every detector is detecting whether someone is in the range of its detecting and to control the light besides it. We assume that one detector control only one light respectively and the range of detecting of every detector is a circle and its radius is RR.

Now, there are some students in a classroom, and every light in the classroom is off. We assume that the floor and ceiling of the classroom are two 22-Dimension space. Every student is described by a coordinate indicating the position on the floor, meanwhile every detector is described by a coordinate indicating the position on the ceiling. When a student share the same coordinate with a detector, this student is below the detector. Given the location of every student and every detector, please tell me how many lights will be on after detecting of those detectors.

title

Input

The first line of the input contains one integer TT(T100T\leq 100), which indicates the number of test cases.

In the every test case, the first line contains three numbers MM,NN and RR, where MM (1M1001\leq M\leq 100) is a integer indicates the number of students, and NN (1N501\leq N\leq 50) is a integer indicates the number of detectors in this classroom, and RR is a real number (0<R400<R\leq 40) indicates the detected range of every detector.

Following two lines, the first line contains 2×M2\times M integers, indicate the coordinates of MM students (x,y)(x,y).The second line contains 2×N2\times N integers, indicate the coordinates of NN detectors (X,Y)(X,Y). (0x,y,X,Y1000\leq x,y,X,Y\leq 100)

Output

For each test case, output one line. First ,output Case #C: , where CC is the number of test case, from 11 to TT. Then, output the number of lights that will be on after detecting of those detectors.

Samples

2
2 1 1.0
0 0 2 0
1 0
1 2 1.0
1 0
0 0 2 0
Case #1: 1
Case #2: 2

Resources

pfctgeorge