結果

問題 No.2895 Zero XOR Subset
ユーザー Today03Today03
提出日時 2024-09-20 21:55:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,277 bytes
コンパイル時間 3,962 ms
コンパイル使用メモリ 270,736 KB
実行使用メモリ 821,536 KB
最終ジャッジ日時 2024-09-20 21:55:55
合計ジャッジ時間 7,841 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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;
const int INF = 1e9 + 10;
const ll INFL = 4e18;

int main() {
    int N;
    cin >> N;
    vector<pair<ll, int>> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i].first;
        A[i].second = i;
    }
    ranges::sort(A);

    for (int i = 0; i < N; i++) {
        if (A[i].first == 0) {
            cout << 1 << endl;
            cout << A[i].second + 1 << endl;
            return 0;
        }
    }

    for (int i = 0; i < N - 1; i++) {
        if (A[i].first == A[i + 1].first) {
            cout << 2 << endl;
            cout << A[i].second + 1 << " " << A[i + 1].second + 1 << endl;
            return 0;
        }
    }

    map<ll, vector<int>> mp;
    mp[0].push_back({-1});
    for (int i = 0; i < N; i++) {
        if (mp.count(A[i].first)) {
            cout << mp[A[i].first].size() << endl;
            for (int j : mp[A[i].first]) {
                if (j == -1) continue;
                cout << j + 1 << " ";
            }
            cout << A[i].second + 1 << endl;
            return 0;
        }
        for (auto p : mp) {
            mp[p.first ^ A[i].first] = p.second;
            mp[p.first ^ A[i].first].push_back(A[i].second);
        }
    }

    cout << -1 << endl;
}
0