結果
問題 | No.2220 Range Insert & Point Mex |
ユーザー | prism17 |
提出日時 | 2023-02-18 23:18:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,724 bytes |
コンパイル時間 | 2,503 ms |
コンパイル使用メモリ | 185,248 KB |
実行使用メモリ | 25,124 KB |
最終ジャッジ日時 | 2024-07-20 05:51:05 |
合計ジャッジ時間 | 8,662 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 6 ms
12,928 KB |
testcase_01 | AC | 7 ms
12,800 KB |
testcase_02 | AC | 7 ms
12,776 KB |
testcase_03 | AC | 9 ms
12,776 KB |
testcase_04 | AC | 10 ms
12,928 KB |
testcase_05 | AC | 9 ms
12,776 KB |
testcase_06 | AC | 8 ms
12,904 KB |
testcase_07 | AC | 8 ms
12,772 KB |
testcase_08 | AC | 9 ms
12,780 KB |
testcase_09 | AC | 9 ms
12,776 KB |
testcase_10 | AC | 9 ms
13,004 KB |
testcase_11 | WA | - |
testcase_12 | AC | 9 ms
12,780 KB |
testcase_13 | RE | - |
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 | 168 ms
24,620 KB |
testcase_24 | AC | 145 ms
24,344 KB |
testcase_25 | AC | 107 ms
20,528 KB |
testcase_26 | AC | 136 ms
22,060 KB |
testcase_27 | AC | 101 ms
20,764 KB |
testcase_28 | AC | 31 ms
13,972 KB |
testcase_29 | AC | 33 ms
13,844 KB |
testcase_30 | AC | 32 ms
13,844 KB |
testcase_31 | AC | 66 ms
17,496 KB |
testcase_32 | AC | 70 ms
17,412 KB |
testcase_33 | AC | 77 ms
17,428 KB |
testcase_34 | AC | 171 ms
22,308 KB |
testcase_35 | AC | 179 ms
22,440 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 135 ms
25,124 KB |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:78:16: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 78 | for (auto &[l, r, x] : a) { | ^
ソースコード
// Problem: No.2220 Range Insert & Point Mex // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2220 // Memory Limit: 512 MB // Time Limit: 2000 ms #include <bits/stdc++.h> #define fastio ios::sync_with_stdio(0), cin.tie(0), cout.tie(0); #define dbg(x) cout << #x << " = " << (x) << "\n"; #define popcount(x) __builtin_popcountll((x)) #define all(v) (v).begin(), (v).end() #define pb emplace_back #define x first #define y second using namespace std; typedef long long ll; typedef pair<ll, ll> pll; const int inf = 0x3f3f3f3f; const int mod = 1e9 + 7; struct BIT { int sz; vector<int> bit; int lowbit(int x) { return x & -x; } void add(int x, ll v) { for (int i = ++x; i <= sz; i += lowbit(i)) { bit[i] += v; } } ll ask(int x) { if (x < 0) return 0; ll ret = 0; for (int i = ++x; i >= 1; i -= lowbit(i)) { ret += bit[i]; } return ret; } void build(int _n) { sz = _n; bit = vector<int>(sz + 10, 0); } }bit; const int N = 2e5 + 7; int n, q; int ans[N]; vector<int> in[N], out[N]; vector<int> v, vv; int get(int x) { return lower_bound(all(v), x) - v.begin() + 1; } int g(int x) { return lower_bound(all(vv), x) - vv.begin(); } void solve() { cin >> n; vector<array<int, 3>> a(n); for (int i = 0; i < n; i++) { for (int j = 0; j < 3; j++) { cin >> a[i][j]; } v.pb(a[i][0]); v.pb(a[i][1]); } cin >> q; vector<int> Q(q); for (int &i : Q) { cin >> i; v.pb(i); } v.pb(INT_MAX); sort(all(v)); v.erase(unique(all(v)), v.end()); map<int, int> cnt; for (auto &[l, r, x] : a) { int nl = get(l), nr = get(r + 1); in[nl].pb(x); out[nr].pb(x); vv.pb(x); } vv.pb(0); sort(all(vv)); vv.erase(unique(all(vv)), vv.end()); bit.build(vv.size() + 1); for (int i = 1; i <= v.size(); i++) { for (auto &it : in[i]) { if (++cnt[it] == 1) { bit.add(g(it), 1); } } for (auto &it : out[i]) { if (--cnt[it] == 0) { bit.add(g(it), -1); } } int l = 0, r = vv.size() + 1; while (l < r) { int mid = l + r + 1 >> 1; if (bit.ask(mid) == mid + 1) l = mid; else r = mid - 1; } if (bit.ask(l) == l + 1) ++l; ans[i] = l; } for (int &i : Q) { cout << ans[get(i)] << "\n"; } } int main() { fastio; // freopen("input.txt", "r", stdin); int t = 1; // cin >> t; while (t--) { solve(); } return 0; }