結果
問題 | No.130 XOR Minimax |
ユーザー | crazybbb3 |
提出日時 | 2016-11-24 23:25:12 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,166 bytes |
コンパイル時間 | 2,267 ms |
コンパイル使用メモリ | 77,576 KB |
実行使用メモリ | 47,484 KB |
最終ジャッジ日時 | 2024-05-05 13:09:19 |
合計ジャッジ時間 | 7,546 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 48 ms
37,104 KB |
testcase_02 | AC | 49 ms
37,328 KB |
testcase_03 | AC | 48 ms
37,204 KB |
testcase_04 | AC | 195 ms
45,060 KB |
testcase_05 | AC | 246 ms
47,484 KB |
testcase_06 | WA | - |
testcase_07 | AC | 245 ms
46,236 KB |
testcase_08 | AC | 247 ms
46,224 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 52 ms
37,300 KB |
testcase_16 | AC | 240 ms
45,144 KB |
testcase_17 | AC | 257 ms
45,316 KB |
testcase_18 | WA | - |
testcase_19 | AC | 278 ms
45,812 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 166 ms
41,440 KB |
testcase_23 | AC | 107 ms
40,052 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.PrintWriter; import java.util.Arrays; import java.util.StringTokenizer; public class Main { static BufferedReader in; static PrintWriter out; static StringTokenizer tok; void solve() throws IOException { int n = ni(); int[] a = nia(n); Arrays.sort(a); out.println(rec(a, 32, 0, n)); } int rec(int[] a, int k, int l, int r) { if (k == -1) return 0; int idx = l; while (idx < r) { if ((a[idx] >> k & 1) == 1) { break; } idx++; } if (idx == l || idx == r) { return rec(a, k - 1, l, r); } else { int ret = Math.min(rec(a, k - 1, l, idx), rec(a, k - 1, idx, r)); return ret | 1 << k; } } String ns() throws IOException { while (!tok.hasMoreTokens()) { tok = new StringTokenizer(in.readLine(), " "); } return tok.nextToken(); } int ni() throws IOException { return Integer.parseInt(ns()); } long nl() throws IOException { return Long.parseLong(ns()); } double nd() throws IOException { return Double.parseDouble(ns()); } String[] nsa(int n) throws IOException { String[] res = new String[n]; for (int i = 0; i < n; i++) { res[i] = ns(); } return res; } int[] nia(int n) throws IOException { int[] res = new int[n]; for (int i = 0; i < n; i++) { res[i] = ni(); } return res; } long[] nla(int n) throws IOException { long[] res = new long[n]; for (int i = 0; i < n; i++) { res[i] = nl(); } return res; } public static void main(String[] args) throws IOException { in = new BufferedReader(new InputStreamReader(System.in)); out = new PrintWriter(System.out); tok = new StringTokenizer(""); Main main = new Main(); main.solve(); out.close(); } }