結果

問題 No.130 XOR Minimax
ユーザー 37zigen
提出日時 2016-11-24 19:03:16
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 875 bytes
コンパイル時間 3,871 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 63,868 KB
最終ジャッジ日時 2024-11-27 10:43:06
合計ジャッジ時間 23,743 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other AC * 15 WA * 3 RE * 3
権限があれば一括ダウンロードができます

ソースコード

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])
						throw new AssertionError();
					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(a[n - 1]);

	}
}
0