結果

問題 No.2195 AND Set
ユーザー nononnonon
提出日時 2024-09-12 11:25:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 206,352 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-09-12 11:25:17
合計ジャッジ時間 7,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 124 ms
6,944 KB
testcase_03 AC 147 ms
6,940 KB
testcase_04 AC 124 ms
6,944 KB
testcase_05 AC 129 ms
6,940 KB
testcase_06 AC 128 ms
6,940 KB
testcase_07 AC 97 ms
6,940 KB
testcase_08 AC 129 ms
6,940 KB
testcase_09 AC 88 ms
6,944 KB
testcase_10 AC 184 ms
8,064 KB
testcase_11 AC 182 ms
8,064 KB
testcase_12 AC 179 ms
8,192 KB
testcase_13 AC 181 ms
8,064 KB
testcase_14 AC 201 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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