結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 51 ms
6,944 KB
testcase_05 AC 71 ms
6,940 KB
testcase_06 AC 63 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 62 ms
6,944 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 14 ms
6,944 KB
testcase_11 AC 55 ms
6,944 KB
testcase_12 WA -
testcase_13 AC 43 ms
6,940 KB
testcase_14 AC 52 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 42 ms
6,944 KB
testcase_17 AC 41 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 45 ms
6,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 11 ms
6,944 KB
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=0; k<31; 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