結果

問題 No.130 XOR Minimax
ユーザー tko919tko919
提出日時 2020-01-11 04:05:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 5,000 ms
コード長 1,002 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 171,424 KB
実行使用メモリ 28,608 KB
最終ジャッジ日時 2024-09-12 22:54:19
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 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,940 KB
testcase_04 AC 42 ms
28,608 KB
testcase_05 AC 48 ms
28,488 KB
testcase_06 AC 55 ms
16,028 KB
testcase_07 AC 57 ms
15,504 KB
testcase_08 AC 156 ms
6,940 KB
testcase_09 AC 14 ms
6,940 KB
testcase_10 AC 20 ms
6,940 KB
testcase_11 AC 58 ms
13,980 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 49 ms
11,948 KB
testcase_14 AC 145 ms
6,940 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 104 ms
6,940 KB
testcase_17 AC 109 ms
6,940 KB
testcase_18 AC 117 ms
6,944 KB
testcase_19 AC 137 ms
6,940 KB
testcase_20 AC 70 ms
6,944 KB
testcase_21 AC 144 ms
6,940 KB
testcase_22 AC 34 ms
6,940 KB
testcase_23 AC 12 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll;
const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12;
void tostr(ll x,string& res){while(x)res+=('0'+(x%10)),x/=10; reverse(ALL(res)); return;}
template<class T> inline bool chmax(T& a,T b){ if(a<b){a=b;return 1;}return 0; }
template<class T> inline bool chmin(T& a,T b){ if(a>b){a=b;return 1;}return 0; }
//template end

int n;
ll dfs(vector<int> a,int bit){
   if(bit<0)return 0;
   bit--; vector<int> x,y;
   rep(i,0,a.size()){
      if(a[i]>>bit&1)x.push_back(a[i]);
      else y.push_back(a[i]);
   }
   if(x.empty()||y.empty())return dfs(a,bit);
   else return min(dfs(x,bit),dfs(y,bit))+(1<<bit);
}

int main(){
   scanf("%d",&n);
   vector<int> a(n); rep(i,0,n)scanf("%d",&a[i]);
   printf("%lld\n",dfs(a,30));
   return 0;
}
0