結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 134 ms
41,388 KB
testcase_02 AC 135 ms
41,196 KB
testcase_03 AC 131 ms
41,160 KB
testcase_04 AC 577 ms
48,696 KB
testcase_05 AC 693 ms
54,260 KB
testcase_06 AC 2,424 ms
66,860 KB
testcase_07 WA -
testcase_08 AC 672 ms
54,444 KB
testcase_09 AC 322 ms
47,720 KB
testcase_10 AC 389 ms
47,992 KB
testcase_11 WA -
testcase_12 AC 269 ms
47,136 KB
testcase_13 AC 617 ms
48,524 KB
testcase_14 AC 779 ms
50,404 KB
testcase_15 AC 198 ms
42,120 KB
testcase_16 AC 653 ms
49,680 KB
testcase_17 AC 690 ms
49,480 KB
testcase_18 AC 697 ms
49,356 KB
testcase_19 AC 753 ms
49,972 KB
testcase_20 AC 543 ms
48,396 KB
testcase_21 AC 741 ms
50,584 KB
testcase_22 WA -
testcase_23 AC 265 ms
46,164 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);
					} 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