結果

問題 No.2195 AND Set
ユーザー ineedyourlovepineedyourlovep
提出日時 2023-01-20 21:50:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 926 bytes
コンパイル時間 2,455 ms
コンパイル使用メモリ 208,916 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-23 09:48:29
合計ジャッジ時間 8,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 311 ms
5,376 KB
testcase_03 AC 347 ms
5,376 KB
testcase_04 AC 311 ms
5,376 KB
testcase_05 AC 379 ms
5,376 KB
testcase_06 AC 378 ms
5,376 KB
testcase_07 AC 329 ms
5,376 KB
testcase_08 AC 370 ms
5,376 KB
testcase_09 AC 321 ms
5,376 KB
testcase_10 AC 435 ms
8,064 KB
testcase_11 AC 433 ms
8,064 KB
testcase_12 AC 433 ms
8,064 KB
testcase_13 AC 419 ms
7,936 KB
testcase_14 AC 425 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a, n) for(int i = a; i < (n); i++)
using namespace std;
using ll = long long;
using P = pair<int, int>;
const int INF = 1001001001;
const ll LINF = 1001002003004005006ll;
//const int mod = 1000000007;
//const int mod = 998244353;

int main()
{
  int q;
  cin >> q;
  set<ll> st;
  vector<ll> bit(30);
  rep(qi, 0, q) {
    ll t, x;
    cin >> t;
    if (t == 1) {
      cin >> x;
      if (st.count(x)) continue;
      st.insert(x);
      rep(i, 0, 30) if (!(x>>i&1)) bit[i]++;
    }
    else if (t == 2) {
      cin >> x;
      if (st.count(x)) {
        st.erase(x);
        rep(i, 0, 30) if (!(x>>i&1)) bit[i]--;
      }
    }
    else {
      if (!st.size()) cout << -1 << endl;
      else {
        ll tmp = 1;
        ll ans = 0;
        rep(i, 0, 30) {
          if (!bit[i]) ans += tmp;
          tmp *= 2;
        }
        cout << ans << endl;
      }
    }
  }
  return 0;
}
0