結果
問題 | No.649 ここでちょっとQK! |
ユーザー | hashiryo |
提出日時 | 2020-05-02 15:21:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 3,357 bytes |
コンパイル時間 | 1,665 ms |
コンパイル使用メモリ | 170,448 KB |
実行使用メモリ | 247,680 KB |
最終ジャッジ日時 | 2024-06-09 13:47:30 |
合計ジャッジ時間 | 9,961 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 170 ms
15,872 KB |
testcase_05 | AC | 166 ms
15,872 KB |
testcase_06 | AC | 124 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 320 ms
128,512 KB |
testcase_13 | AC | 322 ms
128,512 KB |
testcase_14 | AC | 315 ms
118,784 KB |
testcase_15 | AC | 322 ms
128,640 KB |
testcase_16 | AC | 316 ms
128,512 KB |
testcase_17 | AC | 344 ms
140,544 KB |
testcase_18 | AC | 385 ms
152,576 KB |
testcase_19 | AC | 423 ms
164,224 KB |
testcase_20 | AC | 444 ms
176,512 KB |
testcase_21 | RE | - |
testcase_22 | AC | 537 ms
200,448 KB |
testcase_23 | AC | 548 ms
212,224 KB |
testcase_24 | RE | - |
testcase_25 | AC | 626 ms
236,032 KB |
testcase_26 | AC | 657 ms
247,680 KB |
testcase_27 | AC | 3 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 3 ms
6,940 KB |
testcase_30 | AC | 106 ms
8,064 KB |
testcase_31 | AC | 93 ms
8,064 KB |
testcase_32 | AC | 1 ms
6,944 KB |
testcase_33 | AC | 1 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define debug(x) cerr << #x << ": " << x << endl #define debugArray(x, n) \ for (long long hoge = 0; (hoge) < (n); ++(hoge)) \ cerr << #x << "[" << hoge << "]: " << x[hoge] << endl template <typename M> struct SegmentTree_Dynamic { using T = typename M::T; using ll = long long; using U = unsigned long long; struct Node { T dat; // U xor_lazy; Node *ch[2]; Node() : dat(M::ti()), ch{nullptr, nullptr} {} /* void *operator new(size_t) { static Node pool[1 << 23]; return pool + node_count++; } */ }; using np = Node *; private: const int height; const ll n; static int node_count; np root; private: /* inline void push(np t, ll b) { if ((t->xor_lazy >> (U)b) & (U)1) swap(t->ch[0], t->ch[1]); if (t->ch[0] != nullptr) t->ch[0]->xor_lazy ^= t->xor_lazy; if (t->ch[1] != nullptr) t->ch[1]->xor_lazy ^= t->xor_lazy; t->xor_lazy = 0; } */ T value(np t) { return t ? t->dat : M::ti(); } np set_Node(np t, U pos, T val, ll b) { if (t == nullptr) t = new Node(); if (b < 0) { t->dat = val; return t; } // push(t, b); bool f = (pos >> (U)b) & (U)1; t->ch[f] = set_Node(t->ch[f], pos, val, b - 1); t->dat = M::f(value(t->ch[0]), value(t->ch[1])); return t; } T query_Node(ll l, ll r, np t, ll lb, ll ub, ll b) { if (t == nullptr || ub <= l || r <= lb) return M::ti(); // push(t, b); if (l <= lb && ub <= r) return t->dat; ll c = (lb + ub) / 2; T vl = query_Node(l, r, t->ch[0], lb, c, b - 1); T vr = query_Node(l, r, t->ch[1], c, ub, b - 1); return M::f(vl, vr); } template <typename C> ll find(np t, C &check, U bias) { ll ret = 0; T acc = M::ti(); for (ll b = height - 1; b >= 0; b--) { // push(t, b); bool f = (bias >> (U)b) & (U)1; if (!check(M::f(acc, value(t->ch[f])))) acc = M::f(acc, value(t->ch[f])), f = !f; t = t->ch[f]; if (!t) return -1; ret |= (U)f << (U)b; } return ret; } public: SegmentTree_Dynamic() {} SegmentTree_Dynamic(ll n_) : height(ceil(log2(n_))), n(1LL << height), root(nullptr) {} void clear() { Node::node_count = 0; root = nullptr; } void xor_all(U key) { if (root != nullptr) root->lazy ^= key; } void set_val(ll k, T x) { root = set_Node(root, k, x, height - 1); } //[a,b) T query(ll a, ll b) { return query_Node(a, b, root, 0, n, height - 1); } T operator[](ll k) { return query(k, k + 1); } // min { i : check(query(0,i+1)) = true } template <typename C> ll find_first(C &check, U bias = 0) { return find(root, check, bias); } }; template <typename M> int SegmentTree_Dynamic<M>::node_count = 0; struct RsumQ { using T = int; static T ti() { return 0; } static T f(const T &l, const T &r) { return l + r; } }; signed main() { cin.tie(0); ios::sync_with_stdio(0); int Q, K; cin >> Q >> K; K--; SegmentTree_Dynamic<RsumQ> seg((long long)1e18 + 10); while (Q--) { long long v; cin >> v; if (v == 1) { cin >> v; seg.set_val(v, seg[v] + 1); } else { auto check = [&](int x) { return x > K; }; v = seg.find_first(check); cout << v << endl; if (v >= 0) seg.set_val(v, seg[v] - 1); } } return 0; }