結果

問題 No.2195 AND Set
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2023-01-20 22:26:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 1,949 bytes
コンパイル時間 1,524 ms
コンパイル使用メモリ 135,804 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-23 10:23:54
合計ジャッジ時間 5,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 231 ms
5,376 KB
testcase_03 AC 247 ms
5,376 KB
testcase_04 AC 228 ms
5,376 KB
testcase_05 AC 229 ms
5,376 KB
testcase_06 AC 230 ms
5,376 KB
testcase_07 AC 192 ms
5,376 KB
testcase_08 AC 222 ms
5,376 KB
testcase_09 AC 186 ms
5,376 KB
testcase_10 AC 316 ms
7,936 KB
testcase_11 AC 308 ms
8,192 KB
testcase_12 AC 315 ms
8,064 KB
testcase_13 AC 310 ms
8,064 KB
testcase_14 AC 306 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* 💕💕💕💕💕
💗💗💗💗💗
  /)/)
( . .)
( づ💗

    💗💗💗  💗💗💗
  💗💗💗💗💗💗💗💗💗
  💗💗💗💗💗💗💗💗💗
    💗💗💗💗💗💗💗
      💗💗💗💗💗
        💗💗💗
          💗

*/

#include <algorithm>
#include <array>
#include <bitset>
#include <cassert>
#include <chrono>
#include <cmath>
#include <complex>
#include <cstdint>
#include <cstring>
#include <ctime>
#include <deque>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <unordered_map>
#include <unordered_set>
std::vector<int> get_divisors(int x, bool sorted = true) {
  std::vector<int> res;
  for (int i = 1; i <= x / i; i++)
    if (x % i == 0) {
      res.push_back(i);
      if (i != x / i) res.push_back(x / i);
    }
  if (sorted) std::sort(res.begin(), res.end());
  return res;
}
void solve() {
  int q;
  std::set<int> s;
  int ans = (1 << 30) - 1;
  std::cin >> q;

  std::vector<int> cnt(30);
  while (q--) {
    int op, x;
    std::cin >> op;
    if (op == 3) {
      if (s.empty())
        std::cout << -1 << '\n';
      else {
        int ans = 0;
        for (int i = 0; i < 30; i++) {
          if (cnt[i] == (int)s.size()) {
            ans |= 1 << i;
          }
        }
        std::cout << ans << '\n';
      }

    } else {
      std::cin >> x;
      if (op == 2) {
        if (s.find(x) == s.end()) continue;
        s.erase(x);
        for (int i = 0; i < 30; i++) {
          if (x >> i & 1) {
            cnt[i] -= 1;
          }
        }
      } else {
        if (s.find(x) != s.end()) continue;
        s.insert(x);
        for (int i = 0; i < 30; i++) {
          if (x >> i & 1) {
            cnt[i] += 1;
          }
        }
      }
    }
  }
}
int main() {
  std::cin.tie(nullptr);
  int t = 1;
  // std::cout << std::boolalpha;
  // std::cin >> t;
  while (t--) solve();
  return 0;
}
0