結果

問題 No.2220 Range Insert & Point Mex
ユーザー umimelumimel
提出日時 2023-02-18 06:50:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 147 ms / 2,000 ms
コード長 1,567 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 183,388 KB
実行使用メモリ 13,872 KB
最終ジャッジ日時 2024-07-21 12:58:43
合計ジャッジ時間 7,198 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,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 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,940 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 129 ms
12,564 KB
testcase_14 AC 131 ms
12,240 KB
testcase_15 AC 128 ms
13,324 KB
testcase_16 AC 130 ms
13,736 KB
testcase_17 AC 129 ms
13,244 KB
testcase_18 AC 133 ms
13,072 KB
testcase_19 AC 132 ms
13,872 KB
testcase_20 AC 130 ms
12,648 KB
testcase_21 AC 131 ms
12,300 KB
testcase_22 AC 137 ms
13,064 KB
testcase_23 AC 140 ms
12,532 KB
testcase_24 AC 126 ms
11,368 KB
testcase_25 AC 83 ms
8,568 KB
testcase_26 AC 138 ms
12,324 KB
testcase_27 AC 102 ms
10,600 KB
testcase_28 AC 26 ms
6,940 KB
testcase_29 AC 31 ms
6,940 KB
testcase_30 AC 32 ms
6,940 KB
testcase_31 AC 115 ms
12,840 KB
testcase_32 AC 94 ms
9,708 KB
testcase_33 AC 97 ms
9,668 KB
testcase_34 AC 147 ms
12,332 KB
testcase_35 AC 140 ms
12,948 KB
testcase_36 AC 144 ms
12,512 KB
testcase_37 AC 137 ms
12,492 KB
testcase_38 AC 132 ms
13,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pll = pair<ll, ll>;
#define drep(i, cc, n) for (ll i = (cc); i <= (n); ++i)
#define rep(i, n) drep(i, 0, n - 1)
#define all(a) (a).begin(), (a).end()
#define pb push_back
#define fi first
#define se second

const ll MOD = 1000000007;
const ll MOD2 = 998244353;
const ll INF = 1LL << 60;
const ll MAX_N = 2e5;

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int n; cin >> n;
    priority_queue<tuple<int, int, int>, vector<tuple<int, int, int>>, greater<tuple<int, int, int>>> PQ;
    for(int i=0; i<n; i++){
        int l, r, a;
        cin >> l >> r >> a;
        l--; r--;
        PQ.push({l, 0, a});
        PQ.push({r, 2, a});
    }

    int q;
    cin >> q;
    for(int i=0; i<q; i++){
        int x; cin >> x;
        x--;
        PQ.push({x, 1, i});
    }

    vector<int> ans(q);
    vector<int> cnt(n, 0);
    set<int> st; rep(i, n) st.insert(i);
    while(!PQ.empty()){
        int t = get<1>(PQ.top());
        if(t==0){
            int a = get<2>(PQ.top());
            if(a<n){
                st.erase(a);
                cnt[a]++;
            }
        }else if(t==1){
            int idx = get<2>(PQ.top());
            if((int)st.size()==0) ans[idx]=n;
            else ans[idx]=*st.begin();
        }else if(t==2){
            int a = get<2>(PQ.top());
            if(a<n){
                cnt[a]--;
                if(cnt[a]==0) st.insert(a);
            }
        }

        PQ.pop();
    }

    for(int i=0; i<q; i++) cout << ans[i] << "\n";
}
0