結果

問題 No.2895 Zero XOR Subset
ユーザー haihamabossuhaihamabossu
提出日時 2024-09-20 22:28:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,053 bytes
コンパイル時間 2,500 ms
コンパイル使用メモリ 212,732 KB
実行使用メモリ 814,604 KB
最終ジャッジ日時 2024-09-20 22:28:51
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 MLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  ll n;
  cin >> n;
  vector<bitset<60>> a(n);
  vector<vector<ll>> b(n);
  rep(i, n) {
    ll x;
    cin >> x;
    a[i] = x;
    b[i].push_back(i);
  }
  vector<bool> used(n, false);
  rep(j, 60) {
    ll k = -1;
    rep(i, n) {
      if (!used[i] && a[i].test(j)) {
        k = i;
        used[k] = true;
        break;
      }
    }
    if (k == -1)
      continue;
    rep(i, n) {
      if (!used[i] && a[i].test(j)) {
        a[i] ^= a[k];
        for (const auto x : b[k]) {
          b[i].push_back(x);
        }
      }
    }
  }
  rep(k, n) if (a[k].count() == 0) {
    sort(b[k].begin(), b[k].end());
    cout << b[k].size() << '\n';
    rep(i, b[k].size()) cout << (i ? " " : "") << b[k][i] + 1;
    cout << '\n';
    return;
  }
  cout << "-1\n";
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0