結果

問題 No.130 XOR Minimax
ユーザー a3636takoa3636tako
提出日時 2016-11-24 19:53:06
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 794 bytes
コンパイル時間 1,106 ms
コンパイル使用メモリ 157,528 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 13:07:24
合計ジャッジ時間 2,526 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 AC 48 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
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 #

#include<bits/stdc++.h>
using namespace std;

int N;
int A[1000005];

/*
int dfs(int bit, int l, int r){
	if(bit < 0){
		for(int i = l; i < r; i++){

		}
	}

	int ll = l;
	int rr = r - 1;
	while(1){
		while(ll < N && (A[ll] & (1 << bit)) == 0) ll++;
		while(rr >= 0 && (A[rr] & (1 << bit)) != 1) rr--;
		if(ll >= rr) break;
		swap(A[ll], A[rr]);
		ll++;
		rr--;
	}

	return min(dfs(bit - 1, l, ll), dfs(bit - 1, rr + 1, r); 
}
*/
int cnt[100][2];
int main(){
	cin >> N;
	for(int i = 0; i < N; i++){
		cin >> A[i];
	}
	int ans = 0;
	for(int i = 0; i < 32; i++){
		cnt[i][0] = 0;
		cnt[i][1] = 0;
		for(int j = 0; j < N; j++){
			if((A[j] & (1 << i))){
				cnt[i][0]++;
			}else{
				cnt[i][1]++;
			}
		}
		if(cnt[i][0] != 0 && cnt[i][1] != 0){
			ans |= 1 << i;
		}
	}
	cout << ans << endl;
}

0