結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 20:25:03
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,511 bytes
コンパイル時間 3,999 ms
コンパイル使用メモリ 78,188 KB
実行使用メモリ 125,012 KB
最終ジャッジ日時 2024-05-05 13:07:59
合計ジャッジ時間 16,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

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));
	}

	// Suppose that a is sorted
	static long dfs(long[] a, long p) {
		int n = a.length;
		long min = a[n - 1];
		for (long i = 32; i >= 0; --i) {
			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();
					Arrays.sort(tmp);
					min = Math.min(dfs(tmp, p | (1L << i)), min);
				} else if (tmpMax == a[n - 1]) {
					long[] next = Arrays.copyOf(tmp, n);
					Arrays.sort(next);
					min = Math.min(dfs(next, p | (1L << i)), min);
				}
			}
		}
		return Math.min(min, a[n - 1]);
	}
}
0