結果
問題 | No.2220 Range Insert & Point Mex |
ユーザー | roaris |
提出日時 | 2023-02-18 02:16:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 2,190 ms |
コンパイル使用メモリ | 218,448 KB |
実行使用メモリ | 31,048 KB |
最終ジャッジ日時 | 2024-07-19 16:42:03 |
合計ジャッジ時間 | 10,568 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,948 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 328 ms
30,128 KB |
testcase_21 | AC | 340 ms
29,448 KB |
testcase_22 | AC | 322 ms
31,048 KB |
testcase_23 | AC | 276 ms
25,572 KB |
testcase_24 | AC | 172 ms
21,740 KB |
testcase_25 | AC | 214 ms
16,852 KB |
testcase_26 | AC | 235 ms
25,836 KB |
testcase_27 | AC | 107 ms
18,692 KB |
testcase_28 | AC | 132 ms
9,160 KB |
testcase_29 | AC | 133 ms
9,068 KB |
testcase_30 | AC | 144 ms
9,092 KB |
testcase_31 | AC | 225 ms
26,096 KB |
testcase_32 | WA | - |
testcase_33 | AC | 207 ms
19,304 KB |
testcase_34 | WA | - |
testcase_35 | AC | 272 ms
26,548 KB |
testcase_36 | WA | - |
testcase_37 | AC | 280 ms
27,044 KB |
testcase_38 | AC | 248 ms
25,260 KB |
ソースコード
#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); rep(i, event.size()) { if (event[i][1]==0) s.erase(event[i][2]); else if (event[i][1]==1) s.insert(event[i][2]); else ans[event[i][2]] = *s.begin(); } rep(i, Q) cout << ans[i] << endl; }