-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathB.java
More file actions
63 lines (57 loc) · 1.97 KB
/
B.java
File metadata and controls
63 lines (57 loc) · 1.97 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import java.io.PrintStream;
import java.util.*;
/**
* KickStart 2017 Round G
* Problem B. Cards Game
*/
public class Main {
public String solve(Scanner scanner) {
int n=scanner.nextInt();
long[][] cards=new long[n][2];
for (int i=0;i<n;i++) cards[i][0]=scanner.nextLong();
for (int i=0;i<n;i++) cards[i][1]=scanner.nextLong();
long ans=Long.MAX_VALUE;
for (int i=0;i<n;i++) {
boolean[] visited=new boolean[n];
visited[i]=true;
int used=1;
long curr=0;
while (used<n) {
int index=-1; long v=Long.MAX_VALUE;
for (int x=0;x<n;x++) {
if (visited[x]) continue;
long min=Long.MAX_VALUE;
for (int y=0;y<n;y++) {
if (!visited[y]) continue;
min=Math.min(min, Math.min(cards[x][0]^cards[y][1], cards[x][1]^cards[y][0]));
}
if (v>min) {
index=x; v=min;
}
}
visited[index]=true;
curr+=v;
used++;
}
ans=Math.min(ans, curr);
}
return String.valueOf(ans);
}
public static void main(String[] args) throws Exception {
System.setOut(new PrintStream("output.txt"));
Scanner scanner=new Scanner(System.in);
int times=Integer.parseInt(scanner.nextLine());
long start=System.currentTimeMillis();
for (int t=1;t<=times;t++) {
try {
System.out.println(String.format("Case #%d: %s", t, new Main().solve(scanner)));
}
catch (Throwable e) {
System.err.println("ERROR in case #"+t);
e.printStackTrace();
}
}
long end=System.currentTimeMillis();
System.err.println(String.format("Time used: %.3fs", (end-start)/1000.0));
}
}