結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 60 ms
5,376 KB
testcase_09 AC 16 ms
5,376 KB
testcase_10 AC 47 ms
5,376 KB
testcase_11 AC 34 ms
5,376 KB
testcase_12 AC 69 ms
5,376 KB
testcase_13 AC 74 ms
5,376 KB
testcase_14 AC 45 ms
5,376 KB
testcase_15 AC 80 ms
5,376 KB
testcase_16 AC 67 ms
5,376 KB
testcase_17 AC 72 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 32 ms
5,376 KB
testcase_21 AC 82 ms
5,376 KB
testcase_22 AC 83 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 4 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 50 ms
5,376 KB
testcase_29 AC 72 ms
5,376 KB
testcase_30 AC 86 ms
5,376 KB
testcase_31 AC 54 ms
5,376 KB
testcase_32 AC 68 ms
5,376 KB
testcase_33 AC 80 ms
5,376 KB
testcase_34 AC 78 ms
5,376 KB
testcase_35 AC 81 ms
5,376 KB
testcase_36 AC 80 ms
5,376 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 = 60;
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