結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-25 00:18:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 981 bytes
コンパイル時間 3,629 ms
コンパイル使用メモリ 79,724 KB
実行使用メモリ 64,376 KB
最終ジャッジ日時 2024-05-05 13:10:01
合計ジャッジ時間 17,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 104 ms
40,132 KB
testcase_02 AC 102 ms
40,180 KB
testcase_03 AC 119 ms
41,068 KB
testcase_04 AC 571 ms
53,296 KB
testcase_05 AC 723 ms
64,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

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