結果

問題 No.130 XOR Minimax
ユーザー kmjpkmjp
提出日時 2015-01-16 23:30:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 1,098 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 167,640 KB
実行使用メモリ 14,240 KB
最終ジャッジ日時 2024-09-12 22:32:38
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 9 ms
6,944 KB
testcase_05 AC 16 ms
6,944 KB
testcase_06 AC 67 ms
14,240 KB
testcase_07 AC 69 ms
13,976 KB
testcase_08 AC 61 ms
9,136 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 16 ms
6,944 KB
testcase_11 AC 53 ms
9,600 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 42 ms
8,576 KB
testcase_14 AC 70 ms
8,156 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 43 ms
6,944 KB
testcase_17 AC 46 ms
6,940 KB
testcase_18 AC 51 ms
7,196 KB
testcase_19 AC 63 ms
7,868 KB
testcase_20 AC 27 ms
6,944 KB
testcase_21 AC 67 ms
8,112 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N;
set<int> S;
vector<int> v;

int hoge(int d,vector<int>& v) {
	if(v.size()<=1) return 0;
	int i,j;
	vector<int> w[2];
	FOR(i,v.size()) {
		int x=v[i];
		w[(x>>d)&1].push_back(x^(x&(1<<d)));
	}
	
	if(w[0].size()==0) return hoge(d-1,w[1]);
	if(w[1].size()==0) return hoge(d-1,w[0]);
	
	return (1<<d)+min(hoge(d-1,w[0]),hoge(d-1,w[1]));
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	cin>>N;
	FOR(i,N) cin>>x, S.insert(x);
	ITR(it,S) v.push_back(*it);
	
	cout<<hoge(29,v)<< endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0