結果

問題 No.2895 Zero XOR Subset
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-13 15:04:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 1,821 bytes
コンパイル時間 3,256 ms
コンパイル使用メモリ 220,668 KB
実行使用メモリ 117,380 KB
最終ジャッジ日時 2024-11-13 15:04:42
合計ジャッジ時間 10,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 487 ms
114,012 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 471 ms
114,144 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 496 ms
115,676 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 447 ms
114,228 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 455 ms
115,604 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 464 ms
117,380 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 3 ms
6,820 KB
testcase_26 AC 468 ms
114,196 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 3 ms
6,824 KB
testcase_29 AC 483 ms
112,560 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 437 ms
109,524 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 476 ms
112,544 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 449 ms
111,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const int BITLEN=60;

//bitsetの昇順
bool bitasc(const bitset<BITLEN> &a, const bitset<BITLEN> &b){
    for (int i=BITLEN-1; i>=0; i--){
        if (a[i] != b[i]){
            return a[i] < b[i];
        }
    }
    return false;
}

//bitsetのmin
bitset<BITLEN> min(bitset<BITLEN> a, bitset<BITLEN> b){
    if (bitasc(a, b)) return a;
    return b;
}

const ll modc=998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);
 
    ll N, A;
    cin >> N;
    vector<pair<bitset<BITLEN>, int>> vec(N);
    vector<pair<bitset<BITLEN>, int>> base;
    
    for (int i=0; i<N; i++){
        cin >> A;
        vec[i] = {A, i};
    }
    //A_iに作用したindex
    vector<vector<ll>> v(N);
    vector<ll> ans, cnt;
    map<ll, vector<ll>> mp;

    auto dfs=[&](auto self, int from)->vector<ll>{
        if (mp.count(from)) return mp[from];
        vector<ll> res(N), res2;
        res[from]++;
        for (auto to : v[from]){
            assert(to < from);
            res2 = self(self, to);
            for (int i=0; i<N; i++) res[i] += res2[i];
        }
        return mp[from] = res;
    };

    for (int i=0; i<N; i++){
        for (auto &[e, x] : base){
            if (bitasc(vec[i].first^e, vec[i].first)){
                vec[i].first = vec[i].first^e;
                v[i].push_back(x);
            }
        }
        if (vec[i].first.any()) base.push_back(vec[i]);
        else{
            cnt = dfs(dfs, i);
            for (int j=0; j<N; j++){
                if (cnt[j] % 2 == 1) ans.push_back(j+1);
            }
            cout << ans.size() << endl;
            for (auto x : ans) cout << x << " ";
            cout << endl;
            return 0;
        }
    }

    cout << -1 << endl;

    return 0;
}
0