|
||||||||||
RadarTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 5792 Accepted Submission(s): 2117 Problem Description N cities of the Java Kingdom need to be covered by radars for being in a state of war. Since the kingdom has M radar stations but only K operators, we can at most operate K radars. All radars have the same circular coverage with a radius of R. Our goal is to minimize R while covering the entire city with no more than K radars. Input The input consists of several test cases. The first line of the input consists of an integer T, indicating the number of test cases. The first line of each test case consists of 3 integers: N, M, K, representing the number of cities, the number of radar stations and the number of operators. Each of the following N lines consists of the coordinate of a city. Each of the last M lines consists of the coordinate of a radar station. All coordinates are separated by one space. Technical Specification 1. 1 ¡Ü T ¡Ü 20 2. 1 ¡Ü N, M ¡Ü 50 3. 1 ¡Ü K ¡Ü M 4. 0 ¡Ü X, Y ¡Ü 1000 Output For each test case, output the radius on a single line, rounded to six fractional digits. Sample Input
Sample Output
Source | ||||||||||
|