結果

問題 No.2220 Range Insert & Point Mex
ユーザー otoshigootoshigo
提出日時 2023-02-18 14:57:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,265 bytes
コンパイル時間 2,700 ms
コンパイル使用メモリ 218,072 KB
実行使用メモリ 12,780 KB
最終ジャッジ日時 2024-07-21 13:00:39
合計ジャッジ時間 7,531 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 114 ms
12,656 KB
testcase_14 AC 112 ms
12,780 KB
testcase_15 AC 111 ms
12,660 KB
testcase_16 AC 112 ms
12,628 KB
testcase_17 AC 112 ms
12,620 KB
testcase_18 AC 112 ms
12,656 KB
testcase_19 AC 113 ms
12,656 KB
testcase_20 AC 116 ms
12,532 KB
testcase_21 AC 115 ms
12,656 KB
testcase_22 AC 115 ms
12,656 KB
testcase_23 AC 143 ms
12,524 KB
testcase_24 AC 112 ms
11,888 KB
testcase_25 AC 88 ms
8,624 KB
testcase_26 AC 122 ms
12,652 KB
testcase_27 AC 103 ms
11,120 KB
testcase_28 AC 22 ms
5,376 KB
testcase_29 AC 25 ms
5,376 KB
testcase_30 AC 25 ms
5,376 KB
testcase_31 AC 96 ms
12,656 KB
testcase_32 AC 79 ms
9,964 KB
testcase_33 AC 79 ms
9,964 KB
testcase_34 AC 126 ms
12,660 KB
testcase_35 AC 125 ms
12,660 KB
testcase_36 AC 122 ms
12,528 KB
testcase_37 AC 122 ms
12,780 KB
testcase_38 AC 125 ms
12,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
#define rep(i,n) for(int i=0;i<n;i++)
#define rrep(i,n) for(int i=(n)-1;i>=0;i--)
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin>>n;
    vector<tuple<int,int,int>>T;
    vector<int>A(n);
    rep(i,n){
        int l,r;
        cin>>l>>r>>A[i];
        T.push_back(make_tuple(l,-1,i));
        T.push_back(make_tuple(r,1,i));
    }
    int q;
    cin>>q;
    rep(i,q){
        int x;
        cin>>x;
        T.push_back(make_tuple(x,0,i));
    }
    sort(all(T));
    set<int>se;
    rep(i,n+1)se.insert(i);
    vector<int>C(n+1),ans(q);
    for(auto[x,t,i]:T){
        if(t==0){
            ans[i]=*se.begin();
        }else{
            if(A[i]>n)continue;
            if(t==-1){
                if(C[A[i]]==0)se.erase(A[i]);
                C[A[i]]++;
            }else{
                C[A[i]]--;
                if(C[A[i]]==0)se.insert(A[i]);
            }
        }
    }
    rep(i,q)cout<<ans[i]<<"\n";
}
0