結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 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<vector<ll>> a(n), b(n);
  rep(i, n) {
    ll x;
    cin >> x;
    rep(j, 60) a[i].push_back((x >> j) & 1);
    b[i].push_back(i);
  }
  vector<bool> used(n, false);
  rep(j, 60) {
    ll k = -1;
    rep(i, n) {
      if (!used[i] && a[i][j]) {
        k = i;
        used[k] = true;
        break;
      }
    }
    if (k == -1)
      continue;
    rep(i, n) {
      if (!used[i] && a[i][j]) {
        rep(j2, 60) a[i][j2] ^= a[k][j2];
        for (const auto x : b[k]) {
          b[i].push_back(x);
        }
      }
    }
  }
  rep(k, n) {
    ll cnt = 0;
    rep(j, 60) cnt += a[k][j];
    if (cnt > 0)
      continue;
    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