結果
問題 | No.2220 Range Insert & Point Mex |
ユーザー | nika tamliani |
提出日時 | 2023-02-17 23:17:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,172 bytes |
コンパイル時間 | 2,211 ms |
コンパイル使用メモリ | 207,408 KB |
実行使用メモリ | 43,676 KB |
最終ジャッジ日時 | 2024-07-19 14:27:34 |
合計ジャッジ時間 | 10,263 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 13 ms
34,612 KB |
testcase_01 | AC | 13 ms
36,324 KB |
testcase_02 | AC | 12 ms
35,128 KB |
testcase_03 | AC | 13 ms
35,096 KB |
testcase_04 | AC | 13 ms
34,960 KB |
testcase_05 | AC | 13 ms
35,672 KB |
testcase_06 | AC | 12 ms
35,176 KB |
testcase_07 | AC | 13 ms
35,272 KB |
testcase_08 | AC | 14 ms
35,148 KB |
testcase_09 | AC | 13 ms
35,676 KB |
testcase_10 | AC | 13 ms
34,660 KB |
testcase_11 | AC | 14 ms
34,972 KB |
testcase_12 | AC | 12 ms
34,620 KB |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 177 ms
39,136 KB |
testcase_24 | AC | 159 ms
39,140 KB |
testcase_25 | AC | 127 ms
37,572 KB |
testcase_26 | AC | 136 ms
39,160 KB |
testcase_27 | AC | 84 ms
38,084 KB |
testcase_28 | AC | 59 ms
36,048 KB |
testcase_29 | AC | 61 ms
35,932 KB |
testcase_30 | AC | 63 ms
35,996 KB |
testcase_31 | RE | - |
testcase_32 | AC | 107 ms
36,660 KB |
testcase_33 | AC | 103 ms
36,588 KB |
testcase_34 | AC | 119 ms
36,572 KB |
testcase_35 | AC | 123 ms
36,752 KB |
testcase_36 | AC | 120 ms
36,732 KB |
testcase_37 | AC | 121 ms
37,004 KB |
testcase_38 | AC | 144 ms
39,756 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MOD = 998244353, oo = 1e9 + 10, N = 1e6 + 10; int c[N][2], nodes = 1; pair<int, int> t[N]; pair<int, int> neutral = {-1, -1}; pair<int, int> merge(pair<int, int> A, pair<int, int> B) { if (A == neutral) { return B; } if (B == neutral) { return A; } if (A.second >= B.first - 1) { return {min(B.first, A.first), max(B.second, A.second)}; } return A; } void push(int pos) { if (c[pos][0] == 0) { c[pos][0] = ++nodes; } if (c[pos][1] == 0) { c[pos][1] = ++nodes; } t[c[pos][0]] = merge(t[c[pos][0]], t[pos]); t[c[pos][1]] = merge(t[c[pos][1]], t[pos]); t[pos] = neutral; } void update(int l, int r, int L, int R, int v, int pos) { if (l > R || L > r) { return; } if (L <= l && R >= r) { t[pos] = merge(t[pos], {v, v}); return; } if (l < r) { int m = l + r >> 1; push(pos); update(l, m, L, R, v, c[pos][0]); update(m + 1, r, L, R, v, c[pos][1]); } } void update(int l, int r, int v) { update(1, oo - 1, l, r, v, 1); } int get(int l, int r, int x, int pos) { if (l > x || r < x) { return 0; } if (l == r) { if (t[pos].first <= 0) { return t[pos].second + 1; } return 0; } push(pos); int m = l + r >> 1; return get(l, m, x, c[pos][0]) + get(m + 1, r, x, c[pos][1]); } int get(int pos) { return get(1, oo - 1, pos, 1); } int main() { ios::sync_with_stdio(0); cin.tie(0); int n; cin >> n; for (int i = 0; i < N; ++i) { t[i] = neutral; } vector<vector<pair<int, int>>> queries(N); for (int i = 0; i < n; ++i) { int l, r, x; cin >> l >> r >> x; if (x < N) { queries[x].push_back({l, r}); } } for (int i = 0; i < N; ++i) { for (auto [l, r] : queries[i]) { update(l, r, i); } } int q; cin >> q; for (int _ = 0; _ < q; ++_) { int x; cin >> x; cout << get(x) << '\n'; } }