結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー ir5ir5
提出日時 2024-06-16 00:09:18
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 1,479 ms
コンパイル使用メモリ 130,556 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-16 00:09:23
合計ジャッジ時間 5,034 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 67 ms
6,944 KB
testcase_09 AC 18 ms
6,944 KB
testcase_10 AC 51 ms
6,940 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 77 ms
6,940 KB
testcase_13 AC 83 ms
6,944 KB
testcase_14 AC 49 ms
6,940 KB
testcase_15 AC 90 ms
6,944 KB
testcase_16 AC 74 ms
6,940 KB
testcase_17 AC 81 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,948 KB
testcase_20 AC 43 ms
6,940 KB
testcase_21 AC 91 ms
6,940 KB
testcase_22 AC 91 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 4 ms
6,944 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 57 ms
6,944 KB
testcase_29 AC 80 ms
6,940 KB
testcase_30 AC 70 ms
6,944 KB
testcase_31 AC 62 ms
6,940 KB
testcase_32 AC 75 ms
6,940 KB
testcase_33 AC 88 ms
6,940 KB
testcase_34 AC 88 ms
6,940 KB
testcase_35 AC 91 ms
6,940 KB
testcase_36 AC 90 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <iostream>
#include <vector>
#include <sstream>
#include <bitset>
#include <ranges>
using namespace std;
using ll = long long;

auto range(int n) { return views::iota(0, n); }

const int M = 100000;
const int N = 62;
using Row = bitset<M>;

Row A[N];

int main() {
  int m; cin >> m;
  for (int j : range(m)) {
    ll a; cin >> a;
    for (int i : range(N)) A[i][j] = (a >> i) & 1;
  }

  int piv = 0;
  for (int j : range(m)) {
    bool found = 0;
    for (int i : views::iota(piv, N)) {
      if (A[i][j]) {
        found = 1;
        swap(A[i], A[piv]);
        break;
      }
    }

    if (!found) {
      int parity = 0;
      for (int i : range(piv)) parity ^= A[i][j];
      continue;
    }
    for (int i : range(N)) if (i != piv) {
      if (A[i][j]) A[i] ^= A[piv];
    }
    piv++;
  }

  const int s = piv;  // s is the rank of [A[0] A[1] ... A[m - 1]]
  ll ans = 1LL << s;
  cout << ans << endl;
}
0