結果

問題 No.2220 Range Insert & Point Mex
ユーザー prism17prism17
提出日時 2023-02-19 00:00:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 1,530 bytes
コンパイル時間 2,278 ms
コンパイル使用メモリ 185,556 KB
実行使用メモリ 26,996 KB
最終ジャッジ日時 2023-09-28 18:20:57
合計ジャッジ時間 9,995 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
8,208 KB
testcase_01 AC 29 ms
8,088 KB
testcase_02 AC 27 ms
8,108 KB
testcase_03 AC 27 ms
8,088 KB
testcase_04 AC 28 ms
8,280 KB
testcase_05 AC 27 ms
8,068 KB
testcase_06 AC 28 ms
8,072 KB
testcase_07 AC 27 ms
8,368 KB
testcase_08 AC 27 ms
8,076 KB
testcase_09 AC 27 ms
8,252 KB
testcase_10 AC 27 ms
8,080 KB
testcase_11 AC 28 ms
8,084 KB
testcase_12 AC 27 ms
8,148 KB
testcase_13 AC 163 ms
18,332 KB
testcase_14 AC 161 ms
16,824 KB
testcase_15 AC 163 ms
16,792 KB
testcase_16 AC 163 ms
16,860 KB
testcase_17 AC 167 ms
16,420 KB
testcase_18 AC 162 ms
17,356 KB
testcase_19 AC 164 ms
16,904 KB
testcase_20 AC 429 ms
26,012 KB
testcase_21 AC 419 ms
26,996 KB
testcase_22 AC 416 ms
26,108 KB
testcase_23 AC 228 ms
22,132 KB
testcase_24 AC 175 ms
17,724 KB
testcase_25 AC 171 ms
17,476 KB
testcase_26 AC 202 ms
22,524 KB
testcase_27 AC 142 ms
14,936 KB
testcase_28 AC 84 ms
14,064 KB
testcase_29 AC 88 ms
13,960 KB
testcase_30 AC 87 ms
13,964 KB
testcase_31 AC 139 ms
16,420 KB
testcase_32 AC 131 ms
15,420 KB
testcase_33 AC 131 ms
15,468 KB
testcase_34 AC 209 ms
20,088 KB
testcase_35 AC 212 ms
20,472 KB
testcase_36 AC 197 ms
20,568 KB
testcase_37 AC 193 ms
19,672 KB
testcase_38 AC 194 ms
19,260 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: 関数 ‘void solve()’ 内:
main.cpp:48:14: 警告: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
   48 |   for (auto &[pos, op, val] : event) {
      |              ^

ソースコード

diff #

// Problem: No.2220 Range Insert & Point Mex
// Contest: yukicoder
// URL: https://yukicoder.me/problems/no/2220
// Memory Limit: 512 MB
// Time Limit: 2000 ms

#include <bits/stdc++.h>

#define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#define dbg(x) cout << #x << " = " << (x) << "\n";
#define popcount(x) __builtin_popcountll((x))
#define all(v) (v).begin(), (v).end()
#define pb emplace_back
#define x first
#define y second

using namespace std;
typedef long long ll;
typedef pair<ll, ll> pll;

const int inf = 0x3f3f3f3f;
const int mod = 1e9 + 7;

const int N = 1e5 + 7;
int n, q;

void solve() {
  cin >> n;
  vector<array<int, 3>> event;
  for (int i = 0; i < n; i++) {
    array<int, 3> arr{};
    for (int j = 0; j < 3; j++) {
      cin >> arr[j];
    }
    event.push_back({arr[0], 1, arr[2]});
    event.push_back({arr[1], 3, arr[2]});
  }
  cin >> q;
  vector<int> Q(q);
  for (int &i : Q) {
    cin >> i;
    event.push_back({i, 2, 0});
  }
  sort(all(event));
  set<int> mex;
  map<int, int> cnt, ans;
  for (int i = 0; i < N; i++) mex.insert(i);
  for (auto &[pos, op, val] : event) {
    if (op == 1) {
      if (cnt[val]++ == 0) {
        auto it = mex.find(val);
        if (it != mex.end()) mex.erase(it);
      }
    } else if (op == 3) {
      if (cnt[val]-- == 1) {
        mex.insert(val);
      }
    } else {
      ans[pos] = *mex.begin();
    }
  }
  for (int &i : Q) {
    cout << ans[i] << "\n";
  }
}

int main() {
  fastio;
  int t = 1;
  while (t--) {
    solve();
  }
  return 0;
}
0