結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 19:23:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,684 bytes
コンパイル時間 3,192 ms
コンパイル使用メモリ 78,256 KB
実行使用メモリ 66,796 KB
最終ジャッジ日時 2024-05-05 13:07:15
合計ジャッジ時間 18,434 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 119 ms
41,408 KB
testcase_02 AC 116 ms
40,764 KB
testcase_03 AC 110 ms
40,308 KB
testcase_04 AC 515 ms
48,620 KB
testcase_05 AC 625 ms
54,392 KB
testcase_06 AC 2,212 ms
66,796 KB
testcase_07 WA -
testcase_08 AC 695 ms
59,152 KB
testcase_09 AC 317 ms
47,872 KB
testcase_10 AC 339 ms
47,828 KB
testcase_11 WA -
testcase_12 AC 226 ms
47,604 KB
testcase_13 AC 586 ms
48,444 KB
testcase_14 AC 857 ms
54,700 KB
testcase_15 AC 181 ms
42,500 KB
testcase_16 AC 654 ms
52,632 KB
testcase_17 AC 615 ms
50,004 KB
testcase_18 AC 641 ms
51,584 KB
testcase_19 AC 657 ms
52,532 KB
testcase_20 AC 557 ms
48,660 KB
testcase_21 AC 716 ms
52,040 KB
testcase_22 WA -
testcase_23 AC 247 ms
47,132 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();
		long[] a = new long[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextLong();
		}
		Arrays.sort(a);
		/*
		 * long ans = 0; for (int t = 0; t < 100; ++t) { for (long i = 32; i >=
		 * 0; --i) {// 3=1,1, if ((a[n - 1] & (1L << i)) > 0) { long[] tmp =
		 * Arrays.copyOf(a, n); long tmpMax = 0; for (int j = 0; j < n; ++j) {
		 * tmp[j] = a[j] ^ (1L << i); tmpMax = Math.max(tmpMax, tmp[j]); } if
		 * (tmpMax < a[n - 1]) { if ((ans & (1L << i)) > 0) throw new
		 * AssertionError(); ans |= 1L << i; a = tmp; Arrays.sort(a); break; } }
		 * } }
		 */
		System.out.println(dfs(a, 0));
		// System.out.println(a[n - 1]);
	}

	// Suppose that a is sorted
	static long dfs(long[] a, long p) {
		int n = a.length;
		long min = a[n - 1];
		boolean f = true;
		while (f) {
			long dumy = a[n - 1];
			outer:for (long i = 32; i >= 0; --i) {// 3=1,1,
				if ((a[n - 1] & (1L << i)) > 0 && ((p & (1L << i)) == 0)) {
					long[] tmp = Arrays.copyOf(a, n);
					long tmpMax = 0;
					for (int j = 0; j < n; ++j) {
						tmp[j] = a[j] ^ (1L << i);
						tmpMax = Math.max(tmpMax, tmp[j]);
					}
					if (tmpMax < a[n - 1]) {
						if ((p & (1L << i)) > 0)
							throw new AssertionError();
						p |= 1L << i;
						a = tmp;
						Arrays.sort(a);
						break outer;
					} else if (tmpMax == a[n - 1]) {
						long[] next = Arrays.copyOf(tmp, n);
						Arrays.sort(next);
						min = Math.min(dfs(next, p | (1L << i)), min);
					}
				}
			}
			if (dumy == a[n - 1])
				f = false;
		}
		return Math.min(min, a[n - 1]);
	}
}
0