結果
問題 | No.2195 AND Set |
ユーザー | i_am_noob |
提出日時 | 2023-02-15 18:52:07 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 165 ms / 2,000 ms |
コード長 | 945 bytes |
コンパイル時間 | 1,819 ms |
コンパイル使用メモリ | 208,852 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-07-18 02:58:55 |
合計ジャッジ時間 | 6,194 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 119 ms
5,376 KB |
testcase_03 | AC | 143 ms
5,376 KB |
testcase_04 | AC | 116 ms
5,376 KB |
testcase_05 | AC | 119 ms
5,376 KB |
testcase_06 | AC | 121 ms
5,376 KB |
testcase_07 | AC | 91 ms
5,376 KB |
testcase_08 | AC | 118 ms
5,376 KB |
testcase_09 | AC | 82 ms
5,376 KB |
testcase_10 | AC | 162 ms
8,192 KB |
testcase_11 | AC | 164 ms
8,064 KB |
testcase_12 | AC | 165 ms
8,064 KB |
testcase_13 | AC | 160 ms
8,192 KB |
testcase_14 | AC | 162 ms
8,064 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; using pii=pair<int,int>; #define all(a) a.begin(),a.end() #define pb push_back #define sz(a) ((int)a.size()) int a[49]; signed main(){ ios_base::sync_with_stdio(0),cin.tie(0); int q; cin >> q; set<int> st; while(q--){ int op; cin >> op; if(op==1){ int x; cin >> x; if(st.count(x)) continue; st.insert(x); x=~x; for(int i=0; i<30; ++i) a[i]+=x>>i&1; } else if(op==2){ int x; cin >> x; if(!st.count(x)) continue; st.erase(x); x=~x; for(int i=0; i<30; ++i) a[i]-=x>>i&1; } else{ if(st.empty()) cout << "-1\n"; else{ int res=0; for(int i=0; i<30; ++i) if(!a[i]) res|=1<<i; cout << res << "\n"; } } } }