結果

問題 No.2195 AND Set
ユーザー a01sa01toa01sa01to
提出日時 2024-02-27 00:01:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 3,204 ms
コンパイル使用メモリ 255,792 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-02-27 00:02:01
合計ジャッジ時間 9,794 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 306 ms
6,676 KB
testcase_03 AC 357 ms
6,676 KB
testcase_04 AC 313 ms
6,676 KB
testcase_05 AC 377 ms
6,676 KB
testcase_06 AC 372 ms
6,676 KB
testcase_07 AC 360 ms
6,676 KB
testcase_08 AC 373 ms
6,676 KB
testcase_09 AC 327 ms
6,676 KB
testcase_10 AC 410 ms
8,192 KB
testcase_11 AC 444 ms
8,192 KB
testcase_12 AC 417 ms
8,192 KB
testcase_13 AC 419 ms
8,192 KB
testcase_14 AC 407 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
  #include "settings/debug.cpp"
  #define _GLIBCXX_DEBUG
#else
  #define Debug(...) void(0)
#endif
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); ++i)

int main() {
  int q;
  cin >> q;
  set<int> s;
  vector cnt(30, vector<int>(2, 0));
  while (q--) {
    int t;
    cin >> t;
    if (t == 1) {
      int x;
      cin >> x;
      if (s.contains(x)) continue;
      s.insert(x);
      rep(i, 30) cnt[i][(x >> i) & 1]++;
    }
    else if (t == 2) {
      int x;
      cin >> x;
      if (!s.contains(x)) continue;
      s.erase(x);
      rep(i, 30) cnt[i][(x >> i) & 1]--;
    }
    else {
      if (s.empty()) {
        cout << -1 << endl;
        continue;
      }
      int res = 0;
      rep(i, 30) {
        if (cnt[i][0] > 0) continue;
        res |= 1 << i;
      }
      cout << res << endl;
    }
  }
  return 0;
}
0