結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-25 00:19:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,029 ms / 5,000 ms
コード長 985 bytes
コンパイル時間 3,930 ms
コンパイル使用メモリ 79,280 KB
実行使用メモリ 75,472 KB
最終ジャッジ日時 2024-09-12 22:43:08
合計ジャッジ時間 20,342 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 688 ms
63,600 KB
testcase_01 AC 135 ms
53,860 KB
testcase_02 AC 132 ms
54,372 KB
testcase_03 AC 135 ms
54,072 KB
testcase_04 AC 647 ms
63,572 KB
testcase_05 AC 916 ms
75,472 KB
testcase_06 AC 802 ms
69,812 KB
testcase_07 AC 899 ms
73,484 KB
testcase_08 AC 1,029 ms
73,780 KB
testcase_09 AC 370 ms
59,336 KB
testcase_10 AC 449 ms
59,668 KB
testcase_11 AC 848 ms
66,140 KB
testcase_12 AC 289 ms
58,740 KB
testcase_13 AC 783 ms
63,652 KB
testcase_14 AC 925 ms
63,976 KB
testcase_15 AC 201 ms
56,636 KB
testcase_16 AC 790 ms
64,000 KB
testcase_17 AC 793 ms
63,992 KB
testcase_18 AC 812 ms
64,028 KB
testcase_19 AC 887 ms
64,304 KB
testcase_20 AC 664 ms
61,568 KB
testcase_21 AC 944 ms
63,856 KB
testcase_22 AC 426 ms
59,700 KB
testcase_23 AC 264 ms
58,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q130 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		ArrayList<Integer> a = new ArrayList<>();
		for (int i = 0; i < n; ++i) {
			a.add(sc.nextInt());
		}
		System.out.println(dfs(a, 30));
	}

	// Suppose that a is sorted
	static int dfs(ArrayList<Integer> a, int pos) {
		if (pos == -1)
			return 0;
		ArrayList<Integer> one = new ArrayList<>();
		ArrayList<Integer> zero = new ArrayList<>();
		for (int i = 0; i < a.size(); ++i) {
			if ((a.get(i) & (1 << pos)) > 0) {
				one.add(a.get(i));
			} else {
				zero.add(a.get(i));
			}
		}
		int ans = Integer.MAX_VALUE;// 10,11
		if (one.size() == 0) {
			ans = Math.min(ans, dfs(zero, pos - 1));
		} else if (zero.size() == 0) {
			ans = Math.min(ans, dfs(one, pos - 1));
		} else {
			ans = Math.min(ans, dfs(zero, pos - 1) + (1 << pos));
			ans = Math.min(ans, dfs(one, pos - 1) + (1 << pos));
		}
		return ans;
	}
}
0