結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
41,552 KB
testcase_02 AC 134 ms
41,404 KB
testcase_03 AC 132 ms
41,148 KB
testcase_04 AC 552 ms
48,656 KB
testcase_05 AC 705 ms
54,832 KB
testcase_06 AC 2,515 ms
66,720 KB
testcase_07 WA -
testcase_08 AC 796 ms
61,792 KB
testcase_09 AC 355 ms
48,396 KB
testcase_10 AC 368 ms
48,712 KB
testcase_11 WA -
testcase_12 AC 268 ms
46,832 KB
testcase_13 AC 564 ms
48,980 KB
testcase_14 AC 815 ms
54,224 KB
testcase_15 AC 198 ms
42,924 KB
testcase_16 AC 704 ms
53,816 KB
testcase_17 AC 693 ms
50,284 KB
testcase_18 AC 723 ms
51,788 KB
testcase_19 AC 863 ms
52,756 KB
testcase_20 AC 551 ms
48,792 KB
testcase_21 AC 793 ms
52,240 KB
testcase_22 WA -
testcase_23 AC 274 ms
47,148 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];
			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);
					}
				}
			}
			if (dumy == a[n - 1])
				f = false;
		}
		return Math.min(min, a[n - 1]);
	}
}

0