結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー nu50218nu50218
提出日時 2019-09-02 21:52:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,755 ms / 5,000 ms
コード長 1,287 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 167,484 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-07-04 12:26:53
合計ジャッジ時間 30,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1,205 ms
7,808 KB
testcase_09 AC 256 ms
5,376 KB
testcase_10 AC 948 ms
6,784 KB
testcase_11 AC 677 ms
5,888 KB
testcase_12 AC 1,435 ms
8,492 KB
testcase_13 AC 1,556 ms
9,008 KB
testcase_14 AC 875 ms
6,656 KB
testcase_15 AC 1,688 ms
9,344 KB
testcase_16 AC 1,411 ms
8,376 KB
testcase_17 AC 1,528 ms
8,832 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 52 ms
9,600 KB
testcase_21 AC 1,755 ms
9,472 KB
testcase_22 AC 1,742 ms
9,600 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 1,032 ms
7,168 KB
testcase_29 AC 1,440 ms
8,704 KB
testcase_30 AC 1,197 ms
8,060 KB
testcase_31 AC 1,041 ms
7,356 KB
testcase_32 AC 1,279 ms
8,448 KB
testcase_33 AC 1,665 ms
9,372 KB
testcase_34 AC 1,643 ms
9,332 KB
testcase_35 AC 1,725 ms
9,472 KB
testcase_36 AC 1,713 ms
9,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    int N;
    cin >> N;
    bool matrix[N][63];

    for (int i = 0; i < N; i++) {
        long long A;
        cin >> A;
        for (long long j = 0; j < 63; j++) {
            matrix[i][j] = A & ((long long)1 << j);
        }
    }

    for (int i = 0; i < N; i++) {
        int min_bit = 100;
        int min_index = -1;
        for (int j = i; j < N; j++) {
            for (int k = 0; k < 63; k++) {
                if (matrix[j][k]) {
                    if (k < min_bit) {
                        min_index = j;
                        min_bit = k;
                    }
                }
            }
        }
        if (min_index == -1) break;
        for (int k = 0; k < 63; k++) {
            swap(matrix[i][k], matrix[min_index][k]);
        }
        for (int j = i + 1; j < N; j++) {
            if (matrix[j][min_bit]) {
                for (int k = 0; k < 63; k++) {
                    matrix[j][k] ^= matrix[i][k];
                }
            }
        }
    }

    long long ans = 0;

    for (int i = 0; i < N; i++) {
        bool flag = false;
        for (int j = 0; j < 63; j++) {
            flag |= matrix[i][j];
        }
        ans += flag;
    }

    cout << ((long long)1 << ans) << endl;
}
0