結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 19:15:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,552 bytes
コンパイル時間 3,044 ms
コンパイル使用メモリ 78,940 KB
実行使用メモリ 66,832 KB
最終ジャッジ日時 2024-05-05 13:04:56
合計ジャッジ時間 16,716 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 101 ms
40,040 KB
testcase_02 AC 111 ms
41,012 KB
testcase_03 AC 106 ms
41,212 KB
testcase_04 AC 401 ms
47,620 KB
testcase_05 WA -
testcase_06 AC 2,130 ms
66,832 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 307 ms
48,084 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 521 ms
48,776 KB
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();
		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 = Integer.MAX_VALUE / 4;
		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;
				} 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