結果

問題 No.2220 Range Insert & Point Mex
ユーザー k1suxuk1suxu
提出日時 2023-02-17 23:14:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,460 bytes
コンパイル時間 4,529 ms
コンパイル使用メモリ 280,760 KB
実行使用メモリ 27,228 KB
最終ジャッジ日時 2024-07-21 12:53:30
合計ジャッジ時間 15,816 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,880 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,940 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 288 ms
20,324 KB
testcase_14 AC 294 ms
19,880 KB
testcase_15 AC 291 ms
20,348 KB
testcase_16 AC 286 ms
20,716 KB
testcase_17 AC 285 ms
20,348 KB
testcase_18 AC 290 ms
20,384 KB
testcase_19 AC 286 ms
20,192 KB
testcase_20 AC 307 ms
20,140 KB
testcase_21 AC 312 ms
19,796 KB
testcase_22 AC 307 ms
20,660 KB
testcase_23 AC 285 ms
21,432 KB
testcase_24 AC 188 ms
18,876 KB
testcase_25 AC 223 ms
14,756 KB
testcase_26 AC 229 ms
21,896 KB
testcase_27 AC 88 ms
16,704 KB
testcase_28 AC 140 ms
7,944 KB
testcase_29 AC 147 ms
7,928 KB
testcase_30 AC 146 ms
7,924 KB
testcase_31 AC 235 ms
21,364 KB
testcase_32 AC 174 ms
13,520 KB
testcase_33 AC 183 ms
13,588 KB
testcase_34 AC 244 ms
19,876 KB
testcase_35 AC 251 ms
18,900 KB
testcase_36 AC 243 ms
19,572 KB
testcase_37 AC 250 ms
20,124 KB
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <bits/stdc++.h>
using namespace std;

#define rep(i,n) for(int i = 0; i < (int)n; i++)
#define FOR(n) for(int i = 0; i < (int)n; i++)
#define repi(i,a,b) for(int i = (int)a; i < (int)b; i++)
#define pb push_back
#define all(x) x.begin(),x.end()
//#define mp make_pair
#define vi vector<int>
#define vvi vector<vi>
#define vll vector<ll>
#define vvll vector<vll>
#define vs vector<string>
#define vvs vector<vs>
#define vc vector<char>
#define vvc vector<vc>
#define pii pair<int,int>
#define pllll pair<ll,ll>
#define vpii vector<pair<int,int>>
#define vpllll vector<pair<ll,ll>>
#define vpis vector<pair<int,string>>
#define vplls vector<pair<ll, string>>
#define vpsi vector<pair<string, int>>
#define vpsll vector<pair<string, ll>>

template<typename T>
void chmax(T &a, const T &b) {a = (a > b? a : b);}
template<typename T>
void chmin(T &a, const T &b) {a = (a < b? a : b);}

using ll = long long;
using ld = long double;
using ull = unsigned long long;

const ll INF = numeric_limits<long long>::max() / 2;
const ld pi = 3.1415926535897932384626433832795028;
const ll mod = 998244353;
int dx[] = {-1, 0, 1, 0, -1, -1, 1, 1};
int dy[] = {0, -1, 0, 1, -1, 1, -1, 1};

#define int long long

void solve() {
    int n;
    cin >> n;
    vi l(n), r(n), a(n);
    FOR(n) cin >> l[i] >> r[i] >> a[i];
    int q;
    cin >> q;
    vi x(q);
    FOR(q) cin >> x[i];

    vector<array<int, 3>> query;
    FOR(n) {
        query.push_back({0, l[i], a[i]});
        query.push_back({1, r[i]+1, a[i]});
    }
    FOR(q) {
        query.push_back({2, x[i], i});
    }

    vector<int> order(2*n+q);
    iota(all(order), 0);
    sort(all(order), [&](int i, int j) {
        if(query[i][1] != query[j][1]) return query[i][1] < query[j][1];
        return query[i][0] < query[j][0];
    });

    multiset<int> st;
    int mex = 0;
    vi ans(q, -1);

    for(int i : order) {
        auto e = query[i];
        if(e[0] == 0) {
            st.insert(e[2]);
            while(st.find(mex) != st.end()) {
                mex++;
            }
        }else if(e[0] == 1) {
            st.erase(st.find(e[2]));
            if(st.find(e[2]) == st.end()) chmin(mex, e[2]);
        }else {
            ans[e[2]] = mex;
        }
    }

    for(auto e : ans) cout << e << endl;
}

signed main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    solve();
    return 0;
}
0