結果
問題 | No.130 XOR Minimax |
ユーザー | tenten |
提出日時 | 2021-11-10 11:59:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,179 ms / 5,000 ms |
コード長 | 1,819 bytes |
コンパイル時間 | 2,388 ms |
コンパイル使用メモリ | 78,292 KB |
実行使用メモリ | 88,908 KB |
最終ジャッジ日時 | 2024-11-20 21:53:15 |
合計ジャッジ時間 | 19,487 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 713 ms
65,744 KB |
testcase_01 | AC | 55 ms
37,188 KB |
testcase_02 | AC | 55 ms
37,208 KB |
testcase_03 | AC | 54 ms
37,020 KB |
testcase_04 | AC | 170 ms
44,344 KB |
testcase_05 | AC | 246 ms
45,888 KB |
testcase_06 | AC | 998 ms
75,616 KB |
testcase_07 | AC | 1,017 ms
78,176 KB |
testcase_08 | AC | 1,179 ms
75,024 KB |
testcase_09 | AC | 318 ms
54,488 KB |
testcase_10 | AC | 391 ms
59,008 KB |
testcase_11 | AC | 844 ms
88,908 KB |
testcase_12 | AC | 219 ms
48,284 KB |
testcase_13 | AC | 686 ms
72,764 KB |
testcase_14 | AC | 1,163 ms
68,052 KB |
testcase_15 | AC | 108 ms
42,920 KB |
testcase_16 | AC | 1,036 ms
76,052 KB |
testcase_17 | AC | 1,020 ms
65,248 KB |
testcase_18 | AC | 874 ms
64,272 KB |
testcase_19 | AC | 1,079 ms
67,060 KB |
testcase_20 | AC | 649 ms
64,644 KB |
testcase_21 | AC | 1,049 ms
67,016 KB |
testcase_22 | AC | 379 ms
55,292 KB |
testcase_23 | AC | 201 ms
46,688 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); HashSet<Integer> list = new HashSet<>(); for (int i = 0; i < n; i++) { list.add(sc.nextInt()); } System.out.println(getMin(30, list)); } static int getMin(int idx, HashSet<Integer> list) { if (idx < 0) { return 0; } HashSet<Integer> odd = new HashSet<>(); HashSet<Integer> even = new HashSet<>(); for (int x : list) { if ((x & (1 << idx)) == 0) { even.add(x); } else { odd.add(x ^ (1 << idx)); } } if (even.size() == 0) { return getMin(idx - 1, odd); } else if (odd.size() == 0) { return getMin(idx - 1, even); } else { return (1 << idx) + Math.min(getMin(idx - 1, even), getMin(idx - 1, odd)); } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }