結果

問題 No.130 XOR Minimax
ユーザー fiordfiord
提出日時 2015-08-18 10:15:38
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 427 bytes
コンパイル時間 1,428 ms
コンパイル使用メモリ 164,128 KB
実行使用メモリ 28,352 KB
最終ジャッジ日時 2024-09-12 22:36:11
合計ジャッジ時間 4,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 48 ms
28,352 KB
testcase_05 AC 76 ms
28,312 KB
testcase_06 AC 66 ms
16,652 KB
testcase_07 AC 78 ms
16,196 KB
testcase_08 AC 173 ms
6,940 KB
testcase_09 AC 15 ms
6,940 KB
testcase_10 AC 22 ms
6,940 KB
testcase_11 AC 68 ms
14,512 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 57 ms
12,332 KB
testcase_14 AC 160 ms
6,944 KB
testcase_15 AC 4 ms
6,940 KB
testcase_16 AC 114 ms
6,940 KB
testcase_17 AC 118 ms
6,940 KB
testcase_18 AC 127 ms
6,940 KB
testcase_19 AC 151 ms
6,940 KB
testcase_20 AC 76 ms
6,940 KB
testcase_21 AC 159 ms
6,940 KB
testcase_22 AC 37 ms
6,944 KB
testcase_23 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int dfs(int d,vector<int> a){
	if(d<0)	return 0;
	vector<int> b,c;
	for(int i=0;i<(int)a.size();i++){
		if((a[i]>>d)%2==0)	b.push_back(a[i]);
		else 	c.push_back(a[i]);
	}
	if(b.empty()||c.empty())	return dfs(d-1,a);
	return (1<<d)+min(dfs(d-1,b),dfs(d-1,c));
}
	
int main(){
	int n;	cin>>n;
	vector<int> a(n);
	for(int i=0;i<n;i++)	cin>>a[i];
	cout<<dfs(30,a)<<endl;
	return 0;
}
0