結果
問題 | No.130 XOR Minimax |
ユーザー | tko919 |
提出日時 | 2020-01-11 04:06:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,002 bytes |
コンパイル時間 | 1,775 ms |
コンパイル使用メモリ | 171,216 KB |
実行使用メモリ | 28,608 KB |
最終ジャッジ日時 | 2024-11-23 22:25:42 |
合計ジャッジ時間 | 4,316 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 47 ms
28,608 KB |
testcase_05 | AC | 53 ms
28,484 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
#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; 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]); } bit--; 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; }