結果

問題 No.2220 Range Insert & Point Mex
ユーザー tnakao0123tnakao0123
提出日時 2024-07-05 10:54:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 1,324 bytes
コンパイル時間 620 ms
コンパイル使用メモリ 70,660 KB
実行使用メモリ 12,252 KB
最終ジャッジ日時 2024-07-05 10:54:22
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 109 ms
11,388 KB
testcase_14 AC 111 ms
11,308 KB
testcase_15 AC 111 ms
11,312 KB
testcase_16 AC 108 ms
12,068 KB
testcase_17 AC 109 ms
11,236 KB
testcase_18 AC 109 ms
12,100 KB
testcase_19 AC 111 ms
11,940 KB
testcase_20 AC 90 ms
8,780 KB
testcase_21 AC 90 ms
8,904 KB
testcase_22 AC 92 ms
8,908 KB
testcase_23 AC 130 ms
11,748 KB
testcase_24 AC 97 ms
10,964 KB
testcase_25 AC 88 ms
7,884 KB
testcase_26 AC 118 ms
11,748 KB
testcase_27 AC 91 ms
10,316 KB
testcase_28 AC 23 ms
6,944 KB
testcase_29 AC 26 ms
6,940 KB
testcase_30 AC 27 ms
6,940 KB
testcase_31 AC 90 ms
11,248 KB
testcase_32 AC 67 ms
8,784 KB
testcase_33 AC 80 ms
8,784 KB
testcase_34 AC 100 ms
10,316 KB
testcase_35 AC 113 ms
10,236 KB
testcase_36 AC 99 ms
10,312 KB
testcase_37 AC 112 ms
10,312 KB
testcase_38 AC 121 ms
12,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2220.cc:  No.2220 Range Insert & Point Mex - yukicoder
 */

#include<cstdio>
#include<vector>
#include<set>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 100000;

enum { Rmv, Add, Prt };

/* typedef */

using si = set<int>;

struct Event {
  int tp, x, a;
  Event() {}
  Event(int _tp, int _x): tp(_tp), x(_x), a(-1) {}
  Event(int _tp, int _x, int _a): tp(_tp), x(_x), a(_a) {}

  bool operator<(const Event &e) const {
    return x < e.x || (x == e.x && tp < e.tp);
  }
};

using vev = vector<Event>;

/* global variables */

int cs[MAX_N];

/* subroutines */

/* main */

int main() {
  int n;
  scanf("%d", &n);

  vev es;
  for (int i = 0; i < n; i++) {
    int l, r, a;
    scanf("%d%d%d", &l, &r, &a), l--;

    if (a < n) {
      es.push_back(Event(Rmv, l, a));
      es.push_back(Event(Add, r, a));
    }
  }

  int qn;
  scanf("%d", &qn);

  while (qn--) {
    int x;
    scanf("%d", &x), x--;
    es.push_back(Event(Prt, x));
  }

  sort(es.begin(), es.end());

  si vs;
  for (int i = 0; i <= n; i++) vs.insert(i);

  for (auto &e: es) {
    if (e.tp == Rmv) {
      if (cs[e.a]++ == 0) vs.erase(e.a);
    }
    else if (e.tp == Add) {
      if (--cs[e.a] == 0) vs.insert(e.a);
    }
    else
      printf("%d\n", *vs.begin());
  }
  
  return 0;
}

0