結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー YS55749378YS55749378
提出日時 2022-03-30 13:22:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,336 bytes
コンパイル時間 2,038 ms
コンパイル使用メモリ 177,124 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-11-14 13:36:16
合計ジャッジ時間 125,517 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
48,804 KB
testcase_01 AC 2 ms
39,588 KB
testcase_02 AC 2 ms
31,140 KB
testcase_03 AC 2 ms
55,204 KB
testcase_04 AC 2 ms
37,924 KB
testcase_05 AC 2 ms
37,920 KB
testcase_06 AC 1 ms
54,180 KB
testcase_07 AC 2 ms
54,048 KB
testcase_08 TLE -
testcase_09 AC 1,310 ms
69,504 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 2 ms
62,628 KB
testcase_19 AC 2 ms
62,752 KB
testcase_20 AC 315 ms
65,188 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,824 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstdio>
#include <bits/stdc++.h>
using namespace std;
#define REP2(i,m,n) for(long i=(long)m;i<(long)n;++i)
#define REP(i,n) REP2(i,0,n)

void yesno(bool flag){
    cout<<(flag?"Yes":"No")<<endl;
}

// 引数:vector配列の先頭ポインタ,vector本数,bit数 返り値:基底bitのリスト 影響:配列が掃き出し後の状態に
vector<long> binary_xor_elimination(vector<long> A[],long n,long b){
    sort(A,A+n);
    reverse(A,A+n);
    vector<long> res;
    REP(i,n){
        long maxb=0;
        while(maxb<b && A[i][maxb]==0) maxb++;
        if(maxb<b){
            res.push_back(maxb);
            REP2(j,i+1,n){
                if(A[j][maxb]==1){
                    REP(k,b) A[j][k]^=A[i][k];
                }
            }
            sort(A+i+1,A+n);
            reverse(A+i+1,A+n);
        }
    }
    return res;
}

vector<long> base2(long x){
    vector<long> res;
    REP(i,64){
        res.push_back(x%2);
        x/=2;
    }
    return res;
}

int main(){
    long n;
    cin>>n;
    long a[n];
    REP(i,n) cin>>a[i];
    vector<long> v[n];
    REP(i,n) v[i]=base2(a[i]);
    vector<long> bitlist=binary_xor_elimination(v,n,64);
    long l=bitlist.size();
    cout<<(1LL<<l)<<endl;
    return 0;
}
0