結果

問題 No.130 XOR Minimax
ユーザー koyumeishikoyumeishi
提出日時 2015-02-11 06:13:47
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 731 bytes
コンパイル時間 618 ms
コンパイル使用メモリ 76,684 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-23 18:29:30
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 26 ms
6,940 KB
testcase_05 AC 55 ms
6,940 KB
testcase_06 AC 39 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 52 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 10 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 25 ms
6,940 KB
testcase_14 AC 42 ms
6,944 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 30 ms
6,944 KB
testcase_17 AC 32 ms
6,944 KB
testcase_18 AC 34 ms
6,940 KB
testcase_19 AC 41 ms
6,944 KB
testcase_20 AC 20 ms
6,944 KB
testcase_21 AC 43 ms
6,940 KB
testcase_22 WA -
testcase_23 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cstdio>
#include <sstream>
#include <map>
#include <string>
#include <algorithm>
#include <queue>
#include <cmath>
#include <set>
using namespace std;


int main(){
	long long n;
	cin >> n;
	vector<long long> a(n);

	for(int i=0; i<n; i++){
		cin >> a[i];
	}

	auto get_max = [](vector<long long> &v){
		long long ret = -1;
		for(int i=0; i<v.size(); i++){
			ret = max(ret, v[i]);
		}
		return ret;
	};

	long long ans = 1LL<<60LL;
	for(long long k=32; k>=0; k--){

		ans = min(ans, get_max(a));

		auto b = a;
		for(int i=0; i<n; i++){
			b[i] ^= (1LL<<k);
		}
		long long tmp = get_max(b);
		if(tmp < ans){
			swap(a,b);
			ans = tmp;
		}
	}
	
	cout << ans << endl;
	
	return 0;
}
0