結果

問題 No.2220 Range Insert & Point Mex
ユーザー roarisroaris
提出日時 2023-02-18 02:20:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 2,846 ms
コンパイル使用メモリ 224,212 KB
実行使用メモリ 35,376 KB
最終ジャッジ日時 2024-07-21 12:58:35
合計ジャッジ時間 12,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 317 ms
25,572 KB
testcase_14 AC 318 ms
25,292 KB
testcase_15 AC 313 ms
24,880 KB
testcase_16 AC 311 ms
25,248 KB
testcase_17 AC 313 ms
25,708 KB
testcase_18 AC 315 ms
26,060 KB
testcase_19 AC 309 ms
25,656 KB
testcase_20 AC 538 ms
35,376 KB
testcase_21 AC 523 ms
34,176 KB
testcase_22 AC 532 ms
35,000 KB
testcase_23 AC 366 ms
29,780 KB
testcase_24 AC 249 ms
26,416 KB
testcase_25 AC 271 ms
19,576 KB
testcase_26 AC 325 ms
30,648 KB
testcase_27 AC 173 ms
23,700 KB
testcase_28 AC 149 ms
9,068 KB
testcase_29 AC 154 ms
9,064 KB
testcase_30 AC 156 ms
9,064 KB
testcase_31 AC 253 ms
25,184 KB
testcase_32 AC 214 ms
19,296 KB
testcase_33 AC 230 ms
19,328 KB
testcase_34 AC 348 ms
28,656 KB
testcase_35 AC 362 ms
29,632 KB
testcase_36 AC 328 ms
29,016 KB
testcase_37 AC 353 ms
28,672 KB
testcase_38 AC 315 ms
28,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

int main() {
    cin.tie(0); ios::sync_with_stdio(false);
    
    int N; cin >> N;
    vector<vector<int>> event;
    rep(i, N) {
        int l, r, a; cin >> l >> r >> a;
        event.pb({l, 0, a});
        event.pb({r+1, 1, a});
    }
    int Q; cin >> Q;
    rep(i, Q) {
        int x; cin >> x;
        event.pb({x, 2, i});
    }
    sort(event.begin(), event.end());
    
    int ans[Q];
    set<int> s;
    rep(i, N+1) s.insert(i);
    map<int, int> mp;
    
    rep(i, event.size()) {
        if (event[i][1]==0) {
            mp[event[i][2]]++;
            s.erase(event[i][2]);
        } else if (event[i][1]==1) {
            mp[event[i][2]]--;
            if (mp[event[i][2]]==0) s.insert(event[i][2]);
        } else ans[event[i][2]] = *s.begin();
    }
    
    rep(i, Q) cout << ans[i] << endl;
}
0