結果

問題 No.2195 AND Set
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-06 14:42:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 194 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 1,865 ms
コンパイル使用メモリ 209,004 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-11-28 21:59:23
合計ジャッジ時間 6,438 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 118 ms
5,248 KB
testcase_03 AC 142 ms
5,248 KB
testcase_04 AC 120 ms
5,248 KB
testcase_05 AC 126 ms
5,248 KB
testcase_06 AC 130 ms
5,248 KB
testcase_07 AC 97 ms
5,248 KB
testcase_08 AC 124 ms
5,248 KB
testcase_09 AC 86 ms
5,248 KB
testcase_10 AC 191 ms
8,064 KB
testcase_11 AC 185 ms
8,064 KB
testcase_12 AC 194 ms
8,192 KB
testcase_13 AC 185 ms
8,064 KB
testcase_14 AC 182 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

void fast_io() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
}

int main() {
    fast_io();
    int q;
    cin >> q;
    set<int> st;
    vector<int> cnt(30);
    for (; q--;) {
        int type;
        cin >> type;
        if (type == 1) {
            int x;
            cin >> x;
            if (st.find(x) == st.end()) {
                st.insert(x);
                for (int i = 0; i < 30; i++) {
                    if (x & (1 << i)) {
                        cnt[i]++;
                    }
                }
            }
        } else if (type == 2) {
            int x;
            cin >> x;
            if (st.find(x) != st.end()) {
                st.erase(x);
                for (int i = 0; i < 30; i++) {
                    if (x & (1 << i)) {
                        cnt[i]--;
                    }
                }
            }
        } else {
            if (st.empty()) {
                cout << -1 << "\n";
            } else {
                int ans = 0;
                for (int i = 0; i < 30; i++) {
                    if (cnt[i] == st.size()) {
                        ans += 1 << i;
                    }
                }
                cout << ans << "\n";
            }
        }
    }
}
0