結果
問題 | No.2220 Range Insert & Point Mex |
ユーザー | prism17 |
提出日時 | 2023-02-19 00:00:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 444 ms / 2,000 ms |
コード長 | 1,530 bytes |
コンパイル時間 | 2,172 ms |
コンパイル使用メモリ | 188,440 KB |
実行使用メモリ | 26,052 KB |
最終ジャッジ日時 | 2024-07-21 13:00:50 |
合計ジャッジ時間 | 9,787 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
7,936 KB |
testcase_01 | AC | 28 ms
8,064 KB |
testcase_02 | AC | 27 ms
8,192 KB |
testcase_03 | AC | 27 ms
8,064 KB |
testcase_04 | AC | 28 ms
8,192 KB |
testcase_05 | AC | 27 ms
8,192 KB |
testcase_06 | AC | 28 ms
7,936 KB |
testcase_07 | AC | 28 ms
7,936 KB |
testcase_08 | AC | 27 ms
8,064 KB |
testcase_09 | AC | 27 ms
8,320 KB |
testcase_10 | AC | 27 ms
8,192 KB |
testcase_11 | AC | 28 ms
7,936 KB |
testcase_12 | AC | 27 ms
8,192 KB |
testcase_13 | AC | 165 ms
16,360 KB |
testcase_14 | AC | 165 ms
16,496 KB |
testcase_15 | AC | 166 ms
16,492 KB |
testcase_16 | AC | 167 ms
16,484 KB |
testcase_17 | AC | 165 ms
16,492 KB |
testcase_18 | AC | 165 ms
16,496 KB |
testcase_19 | AC | 165 ms
16,492 KB |
testcase_20 | AC | 421 ms
26,052 KB |
testcase_21 | AC | 443 ms
25,832 KB |
testcase_22 | AC | 444 ms
25,840 KB |
testcase_23 | AC | 234 ms
21,228 KB |
testcase_24 | AC | 177 ms
18,152 KB |
testcase_25 | AC | 170 ms
17,848 KB |
testcase_26 | AC | 207 ms
21,232 KB |
testcase_27 | AC | 145 ms
14,952 KB |
testcase_28 | AC | 84 ms
14,060 KB |
testcase_29 | AC | 87 ms
14,192 KB |
testcase_30 | AC | 86 ms
14,116 KB |
testcase_31 | AC | 143 ms
16,488 KB |
testcase_32 | AC | 132 ms
15,724 KB |
testcase_33 | AC | 130 ms
15,724 KB |
testcase_34 | AC | 213 ms
19,692 KB |
testcase_35 | AC | 213 ms
19,696 KB |
testcase_36 | AC | 196 ms
19,688 KB |
testcase_37 | AC | 188 ms
19,608 KB |
testcase_38 | AC | 198 ms
19,052 KB |
コンパイルメッセージ
main.cpp: In function 'void solve()': main.cpp:48:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 48 | for (auto &[pos, op, val] : event) { | ^
ソースコード
// 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; const int N = 1e5 + 7; int n, q; void solve() { cin >> n; vector<array<int, 3>> event; for (int i = 0; i < n; i++) { array<int, 3> arr{}; for (int j = 0; j < 3; j++) { cin >> arr[j]; } event.push_back({arr[0], 1, arr[2]}); event.push_back({arr[1], 3, arr[2]}); } cin >> q; vector<int> Q(q); for (int &i : Q) { cin >> i; event.push_back({i, 2, 0}); } sort(all(event)); set<int> mex; map<int, int> cnt, ans; for (int i = 0; i < N; i++) mex.insert(i); for (auto &[pos, op, val] : event) { if (op == 1) { if (cnt[val]++ == 0) { auto it = mex.find(val); if (it != mex.end()) mex.erase(it); } } else if (op == 3) { if (cnt[val]-- == 1) { mex.insert(val); } } else { ans[pos] = *mex.begin(); } } for (int &i : Q) { cout << ans[i] << "\n"; } } int main() { fastio; int t = 1; while (t--) { solve(); } return 0; }