結果

問題 No.130 XOR Minimax
ユーザー kotatsugamekotatsugame
提出日時 2020-02-23 07:12:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 434 bytes
コンパイル時間 733 ms
コンパイル使用メモリ 74,264 KB
実行使用メモリ 28,480 KB
最終ジャッジ日時 2024-09-12 22:55:29
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 48 ms
28,480 KB
testcase_05 AC 77 ms
28,480 KB
testcase_06 AC 68 ms
16,684 KB
testcase_07 AC 80 ms
16,288 KB
testcase_08 AC 69 ms
6,944 KB
testcase_09 AC 14 ms
6,940 KB
testcase_10 AC 20 ms
6,944 KB
testcase_11 AC 68 ms
14,640 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 56 ms
12,340 KB
testcase_14 AC 73 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 52 ms
6,940 KB
testcase_17 AC 54 ms
6,944 KB
testcase_18 AC 58 ms
6,944 KB
testcase_19 AC 69 ms
6,944 KB
testcase_20 AC 34 ms
6,940 KB
testcase_21 AC 72 ms
6,944 KB
testcase_22 AC 16 ms
6,940 KB
testcase_23 AC 6 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:21:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   21 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
using namespace std;
int f(vector<int>a,int id)
{
	if(a.size()==1)return 0;
	if(id==0)return 0;
	vector<int>x,y;
	for(int u:a)
	{
		if(u&id)x.push_back(u^id);
		else y.push_back(u);
	}
	if(x.empty())return f(y,id/2);
	else if(y.empty())return f(x,id/2);
	else
	{
		return id+min(f(x,id/2),f(y,id/2));
	}
}
main()
{
	int N;
	cin>>N;
	vector<int>A(N);
	for(int&a:A)cin>>a;
	cout<<f(A,1<<30)<<endl;
}
0