結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー chakkuchakku
提出日時 2016-03-31 03:26:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,525 bytes
コンパイル時間 603 ms
コンパイル使用メモリ 75,908 KB
実行使用メモリ 55,064 KB
最終ジャッジ日時 2023-09-17 17:28:42
合計ジャッジ時間 10,478 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
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 AC 1 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 124 ms
54,620 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 2 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 2 ms
4,376 KB
testcase_26 AC 2 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <set>
#include <map>
#include <queue>
#include <climits>
using namespace std;

#define REP(i,n) for(int i=0;i<n;i++)
#define INF INT_MAX/3
#define MP make_pair
#define PB push_back
#define ALL(v) (v).begin(),(v).end()

typedef long long ll;
typedef pair<int,int> pii;
typedef vector<int> vi;
typedef vector<vi> vvi;

int main(){
    int N;cin>>N;
    vector<ll> A(N);
    REP(i,N) cin>>A[i];
    sort(ALL(A));

    vector<vector<ll>> mat(N,vector<ll>(61,0));
    for(int i=0;i<N;i++){
        ll t = A[i];
        for(int j=0;j<61;j++){
            mat[i][j] = t%2;
            t /= 2;
        }
    }

    //cerr << "before" << endl;
    //for(int i=0;i<N;i++){
    //    for(int j=0;j<61;j++) cerr << mat[i][j] << " ";
    //    cerr << endl;
    //}

    for(int i=0;i<61;i++){
        int p=-1;
        for(int j=0;j<N;j++) if(mat[j][i]==1){
            p = j;
            break;
        }
        if(p==-1) continue;
        for(int j=p+1;j<N;j++){
            if(mat[j][i]==0) continue;
            for(int k=0;k<61;k++) mat[j][k] ^= mat[p][k];
        }
    }

    //cerr << "after" << endl;
    //for(int i=0;i<N;i++){
    //    for(int j=0;j<61;j++) cerr << mat[i][j] << " ";
    //    cerr << endl;
    //}

    int cnt = 0;
    for(int i=0;i<N;i++){
        for(int j=0;j<61;j++) if(mat[i][j]){
            cnt++;
            break;
        }
    }
    ll ans = 1;
    for(int i=0;i<cnt;i++) ans *= 2;
    cout<< ans << endl;
}
0