結果

問題 No.130 XOR Minimax
ユーザー ey429ey429
提出日時 2015-03-05 13:15:09
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 526 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 23,808 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-12 22:34:27
合計ジャッジ時間 1,596 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
6,816 KB
testcase_01 AC 0 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 0 ms
6,940 KB
testcase_04 AC 15 ms
6,940 KB
testcase_05 AC 20 ms
6,944 KB
testcase_06 AC 18 ms
6,944 KB
testcase_07 AC 21 ms
6,940 KB
testcase_08 AC 31 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 8 ms
6,944 KB
testcase_11 AC 28 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 40 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 28 ms
6,940 KB
testcase_17 AC 29 ms
6,940 KB
testcase_18 AC 32 ms
6,944 KB
testcase_19 AC 37 ms
6,944 KB
testcase_20 AC 19 ms
6,940 KB
testcase_21 AC 39 ms
6,940 KB
testcase_22 AC 9 ms
6,940 KB
testcase_23 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:22:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   22 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~
main.cpp:23:30: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |         for(i=0;i<n;i++)scanf("%d",&a[i]);
      |                         ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int a[100000];
int b[100000];
int min(int a,int b){return a<b?a:b;}

int solve(int l,int r,int d){
	if(d==-1)return 0;
	int i;
	int p=l;
	for(i=l;i<r;i++)if(!(a[i]>>d&1))b[p++]=a[i];
	int mid=p;
	for(i=l;i<r;i++)if(a[i]>>d&1)b[p++]=a[i];
	for(i=l;i<r;i++)a[i]=b[i];
	if(mid==l||mid==r)return solve(l,r,d-1);
	int vl=solve(l,mid,d-1);
	int vr=solve(mid,r,d-1);
	return min(vl,vr)+(1<<d);
}

int main(){
	int n,i;
	scanf("%d",&n);
	for(i=0;i<n;i++)scanf("%d",&a[i]);
	printf("%d\n",solve(0,n,30));
	return 0;
}
0