結果

問題 No.2195 AND Set
ユーザー Manuel1024Manuel1024
提出日時 2023-01-20 21:31:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 1,099 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 100,400 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-23 09:23:24
合計ジャッジ時間 7,110 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 300 ms
5,376 KB
testcase_03 AC 316 ms
5,376 KB
testcase_04 AC 290 ms
5,376 KB
testcase_05 AC 355 ms
5,376 KB
testcase_06 AC 356 ms
5,376 KB
testcase_07 AC 318 ms
5,376 KB
testcase_08 AC 353 ms
5,376 KB
testcase_09 AC 305 ms
5,376 KB
testcase_10 AC 406 ms
8,064 KB
testcase_11 AC 413 ms
8,064 KB
testcase_12 AC 420 ms
8,064 KB
testcase_13 AC 411 ms
8,064 KB
testcase_14 AC 410 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <deque>
#include <cmath>
#include <iomanip>
#include <set>
#include <map>
using namespace std;
using ll = long long;
using ld = long double;

int main(){
    int q; cin >> q;
    set<int> s;
    vector<int> cnt(32, 0);
    while(q--){
        int op; cin >> op;
        if(op == 1){
            int x; cin >> x;
            if(s.count(x) == 0){
                s.emplace(x);
                for(int i = 30; i >= 0; i--){
                    if((x >> i) & 1) cnt[i]++;
                }
            }
        }else if(op == 2){
            int x; cin >> x;
            if(s.count(x) == 1){
                s.erase(x);
                for(int i = 30; i >= 0; i--){
                    if((x >> i) & 1) cnt[i]--;
                }
            }
        }else{
            int ans = 0;
            for(int i = 30; i >= 0; i--){
                if(cnt[i] == s.size()) ans |= 1 << i;
            }
            if(s.size() == 0) ans = -1;
            cout << ans << '\n';
        }
    }
    return 0;
}
0