結果

問題 No.2220 Range Insert & Point Mex
ユーザー SSRSSSRS
提出日時 2023-02-17 21:31:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 2,062 bytes
コンパイル時間 2,033 ms
コンパイル使用メモリ 184,440 KB
実行使用メモリ 17,724 KB
最終ジャッジ日時 2024-07-21 12:38:35
合計ジャッジ時間 12,377 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 362 ms
14,772 KB
testcase_14 AC 360 ms
14,976 KB
testcase_15 AC 356 ms
14,848 KB
testcase_16 AC 357 ms
14,848 KB
testcase_17 AC 353 ms
14,848 KB
testcase_18 AC 357 ms
14,976 KB
testcase_19 AC 356 ms
14,800 KB
testcase_20 AC 496 ms
17,280 KB
testcase_21 AC 502 ms
17,116 KB
testcase_22 AC 496 ms
17,152 KB
testcase_23 AC 313 ms
17,724 KB
testcase_24 AC 224 ms
13,528 KB
testcase_25 AC 254 ms
14,336 KB
testcase_26 AC 288 ms
14,920 KB
testcase_27 AC 125 ms
9,840 KB
testcase_28 AC 149 ms
8,320 KB
testcase_29 AC 158 ms
8,320 KB
testcase_30 AC 164 ms
8,448 KB
testcase_31 AC 258 ms
14,916 KB
testcase_32 AC 229 ms
11,136 KB
testcase_33 AC 228 ms
11,232 KB
testcase_34 AC 283 ms
11,904 KB
testcase_35 AC 281 ms
11,904 KB
testcase_36 AC 295 ms
15,232 KB
testcase_37 AC 322 ms
15,152 KB
testcase_38 AC 305 ms
15,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 1100000000;
struct mex_set{
  set<pair<int, int>> st;
  mex_set(){
    st.insert(make_pair(-2, -2));
    st.insert(make_pair(INF, INF));
  }
  void insert(int x){
    int L = x, R = x;
    auto itr1 = st.lower_bound(make_pair(x, 0));
    if ((*itr1).first == x + 1){
      R = (*itr1).second;
      st.erase(itr1);
    }
    auto itr2 = prev(st.lower_bound(make_pair(x, 0)));
    if ((*itr2).second == x - 1){
      L = (*itr2).first;
      st.erase(itr2);
    }
    st.insert(make_pair(L, R));
  }
  void erase(int x){
    auto itr = prev(st.lower_bound(make_pair(x, INF)));
    int L = (*itr).first;
    int R = (*itr).second;
    st.erase(itr);
    if (L < x){
      st.insert(make_pair(L, x - 1));
    }
    if (x < R){
      st.insert(make_pair(x + 1, R));
    }
  }
  int mex(){
    auto itr = st.lower_bound(make_pair(0, 0));
    if ((*itr).first > 0){
      return 0;
    } else {
      return (*itr).second + 1;
    }
  }
};
struct mex_multiset{
  multiset<int> st;
  mex_set S;
  mex_multiset(){
  }
  void insert(int x){
    if (st.find(x) == st.end()){
      S.insert(x);
    }
    st.insert(x);
  }
  void erase(int x){
    st.erase(st.find(x));
    if (st.find(x) == st.end()){
      S.erase(x);
    }
  }
  int mex(){
    return S.mex();
  }
};
int main(){
  int N;
  cin >> N;
  vector<int> l(N), r(N), a(N);
  for (int i = 0; i < N; i++){
    cin >> l[i] >> r[i] >> a[i];
    l[i]--;
  }
  int Q;
  cin >> Q;
  vector<int> x(Q);
  for (int i = 0; i < Q; i++){
    cin >> x[i];
    x[i]--;
  }
  for (int i = 0; i < N; i++){
    l[i] = lower_bound(x.begin(), x.end(), l[i]) - x.begin();
    r[i] = lower_bound(x.begin(), x.end(), r[i]) - x.begin();
  }
  vector<vector<int>> add(Q + 1), sub(Q + 1);
  for (int i = 0; i < N; i++){
    add[l[i]].push_back(a[i]);
    sub[r[i]].push_back(a[i]);
  }
  mex_multiset st;
  for (int i = 0; i < Q; i++){
    for (int j : add[i]){
      st.insert(j);
    }
    for (int j : sub[i]){
      st.erase(j);
    }
    cout << st.mex() << endl;
  }
}
0