結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー veqccveqcc
提出日時 2019-09-16 18:16:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 1,425 bytes
コンパイル時間 844 ms
コンパイル使用メモリ 103,904 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 12:27:52
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 93 ms
5,376 KB
testcase_09 AC 21 ms
5,376 KB
testcase_10 AC 71 ms
5,376 KB
testcase_11 AC 50 ms
5,376 KB
testcase_12 AC 106 ms
5,376 KB
testcase_13 AC 114 ms
5,376 KB
testcase_14 AC 67 ms
5,376 KB
testcase_15 AC 123 ms
5,376 KB
testcase_16 AC 106 ms
5,376 KB
testcase_17 AC 114 ms
6,944 KB
testcase_18 AC 3 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 24 ms
6,944 KB
testcase_21 AC 131 ms
6,944 KB
testcase_22 AC 127 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 80 ms
6,944 KB
testcase_29 AC 111 ms
6,944 KB
testcase_30 AC 94 ms
6,944 KB
testcase_31 AC 82 ms
6,944 KB
testcase_32 AC 104 ms
6,944 KB
testcase_33 AC 125 ms
6,940 KB
testcase_34 AC 125 ms
6,944 KB
testcase_35 AC 128 ms
6,944 KB
testcase_36 AC 128 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <functional>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007LL;

const int MAX_ROW = 100005;
const int MAX_COL = 61;

struct BitMatrix {
    int H, W;
    bitset<MAX_COL> val[MAX_ROW];
    BitMatrix(int m, int n) : H(m), W(n) {}
    inline bitset<MAX_COL> & operator [] (int i) { return val[i]; }
};
int GaussJordan(BitMatrix &A, bool is_extended = false) {
    int rank = 0;
    for (int col = 0; col < A.W; col++) {
        if (is_extended && col == A.W - 1) break; // 拡大係数行列。この場合、最後の列は掃き出さない
        int pivot = -1;
        for (int row = rank; row < A.H; row++) if (A[row][col]) { pivot = row; break; }
        if (pivot == -1) continue;
        swap(A[pivot], A[rank]);
        for (int row = 0; row < A.H; row++) if (row != rank && A[row][col]) A[row] ^= A[rank];
        rank++;
    }
    return rank;
}

int main() {
    int n;
    cin >> n;
    BitMatrix M(n, MAX_COL);
    for (int i = 0; i < n; i++) {
        ll a;
        cin >> a;
        for (int j = 0; j < MAX_COL; j++) {
            if (a & (1LL << j)) M[i][j] = 1;
        }
    }
    int rank = GaussJordan(M);
    cout << (1LL << rank) << '\n';
}
0