結果
問題 | No.2195 AND Set |
ユーザー | HIcoder |
提出日時 | 2023-07-18 18:56:32 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 386 ms / 2,000 ms |
コード長 | 2,623 bytes |
コンパイル時間 | 1,208 ms |
コンパイル使用メモリ | 109,976 KB |
実行使用メモリ | 8,320 KB |
最終ジャッジ日時 | 2024-09-18 18:13:20 |
合計ジャッジ時間 | 8,299 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 277 ms
5,376 KB |
testcase_03 | AC | 296 ms
5,376 KB |
testcase_04 | AC | 275 ms
5,376 KB |
testcase_05 | AC | 350 ms
5,504 KB |
testcase_06 | AC | 337 ms
5,504 KB |
testcase_07 | AC | 296 ms
5,376 KB |
testcase_08 | AC | 337 ms
5,376 KB |
testcase_09 | AC | 286 ms
5,376 KB |
testcase_10 | AC | 380 ms
8,320 KB |
testcase_11 | AC | 386 ms
8,192 KB |
testcase_12 | AC | 386 ms
8,192 KB |
testcase_13 | AC | 385 ms
8,192 KB |
testcase_14 | AC | 381 ms
8,192 KB |
ソースコード
#include<iostream> #include<set> #include<algorithm> #include<vector> #include<string> #include<set> #include<map> #include<numeric> #include<queue> #include<cmath> #include<tuple> using namespace std; typedef long long ll; const ll INF=1LL<<60; typedef pair<ll,ll> P; typedef pair<int,P> PP; const ll MOD=1e9+7; int main(){ int Q; cin>>Q; vector<int> ans(31,0); vector<int> digit(31,0);//2進数で見た際にstにあるなかで最高桁はいくつか set<int> st; vector<int> c; for(int q=0;q<Q;q++){ int t; cin>>t; if(t==1){ int x; cin>>x; if(!st.count(x)){ st.insert(x); { for(int i=0;i<=30;i++){ if(((x>>i)&1)==0){ ans[i]++; } } } { int i=0; while(x>0){ /* if(((x>>i)&1)==0){ //xの2^i桁目が0ならカウント ans[i]++; } */ digit[i]++; i++; x/=2; } } } }else if(t==2){ int x; cin>>x; if(st.count(x)){ { for(int i=0;i<=30;i++){ if(((x>>i)&1)==0){ ans[i]--; } } } st.erase(x); int i=0; while(x>0){ /* if(((x>>i)&1)==0){ //xの2^i桁目が0ならカウント ans[i]--; } */ digit[i]--; i++; x/=2; } } }else{ //t==3 int output=0; if(st.size()==0){ output=-1; }else{ for(int i=0;i<=30;i++){ if(digit[i]==0)break; if(ans[i]==0){ output|=1<<i; } } } c.push_back(output); //cout<<output<<endl; } } for(int v:c){ cout<<v<<endl; } }