結果

問題 No.2195 AND Set
ユーザー momoyuumomoyuu
提出日時 2023-05-19 21:31:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 3,852 ms
コンパイル使用メモリ 251,776 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-05-10 05:12:56
合計ジャッジ時間 10,187 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 320 ms
5,376 KB
testcase_03 AC 317 ms
5,376 KB
testcase_04 AC 312 ms
5,376 KB
testcase_05 AC 371 ms
5,376 KB
testcase_06 AC 349 ms
5,376 KB
testcase_07 AC 304 ms
5,376 KB
testcase_08 AC 355 ms
5,376 KB
testcase_09 AC 303 ms
5,376 KB
testcase_10 AC 394 ms
7,936 KB
testcase_11 AC 381 ms
8,064 KB
testcase_12 AC 389 ms
8,064 KB
testcase_13 AC 411 ms
7,936 KB
testcase_14 AC 404 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
    int q;
    cin>>q;
    set<ll> s;
    vector<int> cnt(30,0);
    while(q--){
        int t;
        cin>>t;
        if(t==1){
            ll x;
            cin>>x;
            if(s.count(x)) continue;
            s.insert(x);
            for(int i = 0;i<30;i++) if(x>>i&1) cnt[i]++;
        }else if(t==2){
            ll x;
            cin>>x;
            if(s.count(x)){
                s.erase(x);
                for(int i = 0;i<30;i++) if(x>>i&1) cnt[i]--;
            }
        }else{
            ll ans = 0;
            if(s.size()==0) ans = -1;
            else{
                for(int i = 0;i<30;i++) if(s.size()==cnt[i]) ans |= 1 << i;
            }
            cout<<ans<<endl;
        }
    }
}


0