-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
47 lines (40 loc) Β· 1.46 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
package Combination.P1007;
import java.io.*;
import java.util.*;
public class Main {
static int T, N;
static int[] x, y;
static double min;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/Combination/P1007/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
T = Integer.parseInt(br.readLine());
while (T-- > 0) {
N = Integer.parseInt(br.readLine());
x = new int[N];
y = new int[N];
double x_sub = 0, y_sub = 0;
for (int i = 0; i < N; i++) {
StringTokenizer st = new StringTokenizer(br.readLine());
x[i] = Integer.parseInt(st.nextToken());
y[i] = Integer.parseInt(st.nextToken());
x_sub -= x[i];
y_sub -= y[i];
}
min = Double.MAX_VALUE;
comb(0, 0, 0, 0, x_sub, y_sub);
System.out.printf("%.6f\n", min);
}
}
static void comb(int start, int cnt, double x_sum, double y_sum, double x_sub, double y_sub) {
if (cnt == N/2) {
double x_res = x_sum + x_sub;
double y_res = y_sum + y_sub;
min = Math.min(min, Math.sqrt(x_res*x_res + y_res*y_res));
return;
}
for (int i = start; i < N; i++) {
comb(i+1, cnt+1, x_sum+x[i], y_sum+y[i], x_sub+x[i], y_sub+y[i]);
}
}
}