結果

問題 No.2195 AND Set
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-06 14:42:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 1,288 bytes
コンパイル時間 2,141 ms
コンパイル使用メモリ 208,124 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-05-06 14:43:09
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 123 ms
5,376 KB
testcase_03 AC 169 ms
5,376 KB
testcase_04 AC 115 ms
5,376 KB
testcase_05 AC 124 ms
5,376 KB
testcase_06 AC 132 ms
5,376 KB
testcase_07 AC 96 ms
5,376 KB
testcase_08 AC 120 ms
5,376 KB
testcase_09 AC 85 ms
5,376 KB
testcase_10 AC 216 ms
8,064 KB
testcase_11 AC 188 ms
8,064 KB
testcase_12 AC 187 ms
8,064 KB
testcase_13 AC 205 ms
8,064 KB
testcase_14 AC 197 ms
8,064 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