結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー face4face4
提出日時 2019-09-25 17:16:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 1,408 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 69,188 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-09-17 17:55:54
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 1 ms
4,376 KB
testcase_08 AC 68 ms
4,380 KB
testcase_09 AC 15 ms
4,376 KB
testcase_10 AC 52 ms
4,376 KB
testcase_11 AC 38 ms
4,376 KB
testcase_12 AC 80 ms
4,376 KB
testcase_13 AC 87 ms
4,380 KB
testcase_14 AC 50 ms
4,384 KB
testcase_15 AC 92 ms
4,376 KB
testcase_16 AC 77 ms
4,380 KB
testcase_17 AC 82 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 18 ms
4,376 KB
testcase_21 AC 96 ms
4,384 KB
testcase_22 AC 95 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 1 ms
4,376 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 1 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 58 ms
4,376 KB
testcase_29 AC 81 ms
4,380 KB
testcase_30 AC 71 ms
4,376 KB
testcase_31 AC 62 ms
4,380 KB
testcase_32 AC 76 ms
4,380 KB
testcase_33 AC 93 ms
4,380 KB
testcase_34 AC 92 ms
4,376 KB
testcase_35 AC 95 ms
4,376 KB
testcase_36 AC 94 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解説を見た
#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;

int main(){
    // int n;
    // cin >> n;
    // vector<vector<bool>> bit(n, vector<bool>(61, 0));
    // for(int i = 0; i < n; i++){
    //     ll x;   cin >> x;
    //     for(int j = 0; j < 61; j++){
    //         bit[i][60-j] = x%2==1;
    //         x >>= 1;
    //     }
    // }
    // int rank = 0;
    // for(int i = 0; i <= 60; i++){
    //     int j;
    //     for(j = rank; j < n; j++){
    //         if(bit[j][i])   break;
    //     }
    //     if(j == n)  continue;
    //     swap(bit[rank], bit[j]);
    //     for(j = 0; j < n; j++){
    //         if(j == rank)   continue;
    //         if(bit[j][i]){
    //             for(int k = 0; k <= 60; k++){
    //                 bit[j][k] = bit[j][k] ^ bit[rank][k];
    //             }
    //         }
    //     }
    //     rank++;
    // }
    int n;
    cin >> n;
    vector<ll> v(n);
    for(int i = 0; i < n; i++)  cin >> v[i];
    int rank = 0;
    for(int i = 60; i >= 0; i--){
        int j;
        for(j = rank; j < n; j++){
            if((v[j]>>i)&1) break;
        }
        if(j == n)  continue;
        swap(v[rank], v[j]);
        for(j = 0; j < n; j++){
            if(j == rank)   continue;
            if((v[j]>>i)&1) v[j] ^= v[rank];
        }
        rank++;
    }
    cout << (1ll<<rank) << endl;
    return 0;
}
0