結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー chakkuchakku
提出日時 2016-03-31 03:46:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 480 ms / 5,000 ms
コード長 1,796 bytes
コンパイル時間 699 ms
コンパイル使用メモリ 76,908 KB
実行使用メモリ 54,784 KB
最終ジャッジ日時 2024-07-04 12:08:25
合計ジャッジ時間 9,365 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 316 ms
39,680 KB
testcase_09 AC 53 ms
10,624 KB
testcase_10 AC 211 ms
30,976 KB
testcase_11 AC 136 ms
23,040 KB
testcase_12 AC 362 ms
45,696 KB
testcase_13 AC 418 ms
49,152 KB
testcase_14 AC 199 ms
29,568 KB
testcase_15 AC 455 ms
52,992 KB
testcase_16 AC 353 ms
44,544 KB
testcase_17 AC 385 ms
48,000 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 133 ms
54,784 KB
testcase_21 AC 475 ms
54,656 KB
testcase_22 AC 478 ms
54,656 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 237 ms
34,304 KB
testcase_29 AC 403 ms
47,232 KB
testcase_30 AC 326 ms
41,856 KB
testcase_31 AC 259 ms
36,736 KB
testcase_32 AC 347 ms
45,184 KB
testcase_33 AC 449 ms
53,248 KB
testcase_34 AC 453 ms
52,608 KB
testcase_35 AC 480 ms
54,400 KB
testcase_36 AC 462 ms
54,016 KB
権限があれば一括ダウンロードができます

ソースコード

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;
    //}

    vector<bool> use(N,false);
    for(int i=0;i<61;i++){
        int p=-1;
        for(int j=0;j<N;j++){
            if(use[j]) continue;
            if(mat[j][i]==1){
                p=j;
                break;
            }
        }
        cerr << p << endl;
        if(p==-1) continue;
        use[p]=true;
        for(int j=0;j<N;j++){
            if(use[j] or mat[j][i]==0) continue;
            for(int k=0;k<61;k++) mat[j][k] ^= mat[p][k];
        }
    //for(int i=0;i<N;i++){
    //    for(int j=0;j<61;j++) cerr << mat[i][j] << " ";
    //    cerr << endl;
    //}
    }

    //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