結果

問題 No.2195 AND Set
ユーザー t98slidert98slider
提出日時 2023-01-20 21:59:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 935 bytes
コンパイル時間 1,962 ms
コンパイル使用メモリ 174,604 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-23 09:58:44
合計ジャッジ時間 5,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 121 ms
5,376 KB
testcase_03 AC 156 ms
5,376 KB
testcase_04 AC 123 ms
5,376 KB
testcase_05 AC 126 ms
5,376 KB
testcase_06 AC 128 ms
5,376 KB
testcase_07 AC 93 ms
5,376 KB
testcase_08 AC 127 ms
5,376 KB
testcase_09 AC 86 ms
5,376 KB
testcase_10 AC 205 ms
8,064 KB
testcase_11 AC 206 ms
8,192 KB
testcase_12 AC 208 ms
8,064 KB
testcase_13 AC 212 ms
8,064 KB
testcase_14 AC 204 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int Q, cmd, x;
    cin >> Q;
    vector<int> cnt(30);
    set<int> S;
    while(Q--){
        cin >> cmd;
        if(cmd <= 2)cin >> x;
        if(cmd == 1){
            if(S.count(x))continue;
            S.insert(x);
            for(int i = 0; i < 30; i++){
                if(x >> i & 1) cnt[i]++;
            }
        }else if(cmd == 2){
            if(!S.count(x))continue;
            S.erase(x);
            for(int i = 0; i < 30; i++){
                if(x >> i & 1) cnt[i]--;
            }
        }else{
            if(S.empty()){
                cout << -1 << '\n';
                continue;
            }
            int ans = 0;
            for(int i = 0; i < 30; i++){
                if(cnt[i] == S.size())ans |= 1 << i;
            }
            cout << ans << '\n';
        }
    }
}
0