結果

問題 No.2220 Range Insert & Point Mex
ユーザー stoqstoq
提出日時 2023-01-30 06:40:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 906 bytes
コンパイル時間 2,716 ms
コンパイル使用メモリ 215,920 KB
実行使用メモリ 12,368 KB
最終ジャッジ日時 2024-07-21 12:36:24
合計ジャッジ時間 10,282 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 208 ms
12,180 KB
testcase_14 AC 206 ms
12,240 KB
testcase_15 AC 207 ms
12,368 KB
testcase_16 AC 203 ms
12,364 KB
testcase_17 AC 208 ms
12,240 KB
testcase_18 AC 208 ms
12,368 KB
testcase_19 AC 205 ms
12,368 KB
testcase_20 AC 224 ms
12,240 KB
testcase_21 AC 231 ms
12,368 KB
testcase_22 AC 228 ms
12,368 KB
testcase_23 AC 225 ms
12,236 KB
testcase_24 AC 188 ms
11,476 KB
testcase_25 AC 143 ms
8,528 KB
testcase_26 AC 204 ms
12,368 KB
testcase_27 AC 157 ms
10,580 KB
testcase_28 AC 40 ms
5,376 KB
testcase_29 AC 52 ms
5,376 KB
testcase_30 AC 52 ms
5,376 KB
testcase_31 AC 174 ms
12,368 KB
testcase_32 AC 131 ms
9,676 KB
testcase_33 AC 129 ms
9,632 KB
testcase_34 AC 203 ms
12,368 KB
testcase_35 AC 203 ms
12,368 KB
testcase_36 AC 193 ms
12,368 KB
testcase_37 AC 201 ms
12,368 KB
testcase_38 AC 195 ms
12,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int n;
  cin >> n;
  vector<array<int, 3>> event;
  for (int i = 0; i < n; i++) {
    int l, r, a;
    cin >> l >> r >> a;
    event.push_back({l, 1, a});
    event.push_back({r, 3, a});
  }
  int q;
  cin >> q;
  for (int i = 0; i < q; i++) {
    int x;
    cin >> x;
    event.push_back({x, 2, i});
  }
  sort(begin(event), end(event));

  set<int> unused;
  for (int i = 0; i <= n; i++) unused.insert(i);
  vector<int> cnt(n), ans(q);
  for (auto [x, type, num] : event) {
    if (type == 1) {  // 追加
      if (num >= n) continue;
      if (cnt[num] == 0) unused.erase(num);
      cnt[num]++;
    } else if (type == 2) {  // クエリ
      ans[num] = *unused.begin();
    } else {  // 削除
      if (num >= n) continue;
      cnt[num]--;
      if (cnt[num] == 0) unused.insert(num);
    }
  }
  for (auto a : ans) cout << a << "\n";
}
0