結果

問題 No.2195 AND Set
ユーザー umezoumezo
提出日時 2023-01-20 22:37:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 210,180 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-23 10:34:58
合計ジャッジ時間 5,538 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 126 ms
6,940 KB
testcase_03 AC 157 ms
6,944 KB
testcase_04 AC 127 ms
6,944 KB
testcase_05 AC 138 ms
6,940 KB
testcase_06 AC 138 ms
6,940 KB
testcase_07 AC 101 ms
6,944 KB
testcase_08 AC 138 ms
6,940 KB
testcase_09 AC 91 ms
6,940 KB
testcase_10 AC 225 ms
8,192 KB
testcase_11 AC 226 ms
8,064 KB
testcase_12 AC 221 ms
8,192 KB
testcase_13 AC 220 ms
8,064 KB
testcase_14 AC 224 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  int q;
  cin>>q;
  set<int> s;
  vector<int> A(30);
  rep(_,q){
    int c;
    cin>>c;
    if(c==1){
      int x;
      cin>>x;
      if(s.count(x)) continue;
      s.insert(x);
      rep(i,30){
        if(x&(1<<i)) A[i]++;
      }
    }
    else if(c==2){
      int x;
      cin>>x;
      if(!s.count(x)) continue;
      s.erase(x);
      rep(i,30){
        if(x&(1<<i)) A[i]--;
      }
    }
    else{
      int ans=0;
      int si=s.size();
      if(si==0){
        cout<<-1<<'\n';
        continue;
      }
      rep(i,30){
        if(A[i]==si) ans+=(1<<i);
      }
      cout<<ans<<'\n';
    }
  }
  
  return 0;
}
0