結果
| 問題 |
No.2220 Range Insert & Point Mex
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-02-19 00:00:07 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.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 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 36 |
コンパイルメッセージ
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;
}