結果

問題 No.2195 AND Set
ユーザー simansiman
提出日時 2023-01-21 17:16:06
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 1,182 bytes
コンパイル時間 5,908 ms
コンパイル使用メモリ 142,660 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-06-24 00:31:18
合計ジャッジ時間 10,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 310 ms
5,376 KB
testcase_03 AC 323 ms
5,376 KB
testcase_04 AC 297 ms
5,376 KB
testcase_05 AC 358 ms
5,376 KB
testcase_06 AC 364 ms
5,376 KB
testcase_07 AC 319 ms
5,376 KB
testcase_08 AC 351 ms
5,376 KB
testcase_09 AC 318 ms
5,376 KB
testcase_10 AC 395 ms
8,192 KB
testcase_11 AC 404 ms
8,192 KB
testcase_12 AC 410 ms
8,192 KB
testcase_13 AC 400 ms
8,192 KB
testcase_14 AC 393 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int Q;
  cin >> Q;
  set<int> S;
  int counter[32];
  memset(counter, 0, sizeof(counter));

  for (int i = 0; i < Q; ++i) {
    int type, x;
    cin >> type;

    if (type == 1) {
      cin >> x;

      if (not S.count(x)) {
        S.insert(x);
        for (int i = 0; i < 32; ++i) {
          if ((x >> i) & 1) {
            counter[i] += 1;
          }
        }
      }
    } else if (type == 2) {
      cin >> x;

      if (S.count(x)) {
        S.erase(x);
        for (int i = 0; i < 32; ++i) {
          if ((x >> i) & 1) {
            counter[i] -= 1;
          }
        }
      }
    } else {
      if (S.empty()) {
        cout << -1 << endl;
      } else {
        ll val = 0;
        for (ll i = 0; i < 32; ++i) {
          if (counter[i] < S.size()) continue;

          if (counter[i] > 0) {
            val += pow(2, i);
          }
        }

        cout << val << endl;
      }
    }
  }

  return 0;
}
0