結果

問題 No.2220 Range Insert & Point Mex
ユーザー prism17prism17
提出日時 2023-02-18 23:36:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 2,512 bytes
コンパイル時間 2,356 ms
コンパイル使用メモリ 186,984 KB
実行使用メモリ 68,216 KB
最終ジャッジ日時 2024-07-21 13:01:01
合計ジャッジ時間 10,013 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
51,400 KB
testcase_01 AC 22 ms
51,964 KB
testcase_02 AC 21 ms
50,636 KB
testcase_03 AC 21 ms
50,688 KB
testcase_04 AC 21 ms
50,456 KB
testcase_05 AC 20 ms
50,960 KB
testcase_06 AC 22 ms
50,832 KB
testcase_07 AC 21 ms
50,492 KB
testcase_08 AC 22 ms
52,124 KB
testcase_09 AC 20 ms
50,708 KB
testcase_10 AC 21 ms
51,364 KB
testcase_11 AC 21 ms
51,244 KB
testcase_12 AC 22 ms
50,532 KB
testcase_13 AC 223 ms
62,016 KB
testcase_14 AC 222 ms
62,012 KB
testcase_15 AC 222 ms
62,040 KB
testcase_16 AC 220 ms
62,312 KB
testcase_17 AC 226 ms
62,756 KB
testcase_18 AC 219 ms
61,908 KB
testcase_19 AC 219 ms
62,432 KB
testcase_20 AC 413 ms
68,216 KB
testcase_21 AC 449 ms
67,472 KB
testcase_22 AC 448 ms
68,072 KB
testcase_23 AC 215 ms
64,224 KB
testcase_24 AC 191 ms
62,824 KB
testcase_25 AC 141 ms
58,704 KB
testcase_26 AC 182 ms
60,968 KB
testcase_27 AC 138 ms
60,000 KB
testcase_28 AC 46 ms
52,428 KB
testcase_29 AC 50 ms
53,204 KB
testcase_30 AC 50 ms
52,856 KB
testcase_31 AC 89 ms
56,552 KB
testcase_32 AC 88 ms
55,496 KB
testcase_33 AC 96 ms
56,716 KB
testcase_34 AC 243 ms
62,416 KB
testcase_35 AC 256 ms
61,096 KB
testcase_36 AC 188 ms
59,564 KB
testcase_37 AC 198 ms
59,148 KB
testcase_38 AC 173 ms
63,396 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void solve()':
main.cpp:74:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions]
   74 |   for (auto &[l, r, x] : a) {
      |              ^

ソースコード

diff #

// 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 = 1e6 + 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);
    if (x) vv.pb(x - 1);
    vv.pb(x + 1);
  }
  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;
}
0