結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー nejinejinejineji
提出日時 2021-02-03 21:12:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 1,131 bytes
コンパイル時間 1,564 ms
コンパイル使用メモリ 169,176 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-30 04:47:58
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 48 ms
5,376 KB
testcase_09 AC 11 ms
5,376 KB
testcase_10 AC 36 ms
5,376 KB
testcase_11 AC 27 ms
5,376 KB
testcase_12 AC 55 ms
5,376 KB
testcase_13 AC 65 ms
5,376 KB
testcase_14 AC 36 ms
5,376 KB
testcase_15 AC 63 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 56 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 15 ms
5,376 KB
testcase_21 AC 66 ms
5,376 KB
testcase_22 AC 65 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 57 ms
5,376 KB
testcase_30 AC 50 ms
5,376 KB
testcase_31 AC 43 ms
5,376 KB
testcase_32 AC 54 ms
5,376 KB
testcase_33 AC 65 ms
5,376 KB
testcase_34 AC 64 ms
5,376 KB
testcase_35 AC 66 ms
5,376 KB
testcase_36 AC 65 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
#define REP(i, x, y) for (ll i = x; i <= y; i++)
#define BIT(t) (1ll << (t))
#define PER(i, y, x) for (ll i = y; i >= x; i--)
#define vll vector<ll>
#define vvll vector<vector<ll>>
#define pll pair<ll, ll>
#define SIZE(v) ll(v.size())
#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end());
using namespace std;
//using namespace atcoder;
typedef long long ll;
typedef long double ld;
//        ios::sync_with_stdio(false);
//        cin.tie(nullptr);

//using mint = modint;
//         mint::set_mod(998244353);

vll xor_basis(vll& a){
        vector<ll> basis;
        for(ll e : a){
                for(ll b : basis){
                        e = min(e, e ^ b);
                }
                if(e){basis.push_back(e);}        
        }
return basis;
}
int main(){
        ll n;
        cin >> n;
        vll a;
        REP(i,1,n){
                ll t;
                cin >> t;
                a.push_back(t);
        }
        vll b = xor_basis(a);
        ll ans = 1;
        REP(i,1,b.size()){
                ans *= 2;
        }
        cout << ans << endl;
}
0