結果
問題 | No.649 ここでちょっとQK! |
ユーザー | ningenMe |
提出日時 | 2020-07-26 13:34:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 347 ms / 3,000 ms |
コード長 | 7,376 bytes |
コンパイル時間 | 2,375 ms |
コンパイル使用メモリ | 210,568 KB |
実行使用メモリ | 12,928 KB |
最終ジャッジ日時 | 2024-06-28 13:55:29 |
合計ジャッジ時間 | 8,338 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 267 ms
6,940 KB |
testcase_04 | AC | 93 ms
12,800 KB |
testcase_05 | AC | 95 ms
12,800 KB |
testcase_06 | AC | 93 ms
12,928 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 144 ms
7,552 KB |
testcase_13 | AC | 139 ms
7,552 KB |
testcase_14 | AC | 144 ms
7,552 KB |
testcase_15 | AC | 151 ms
7,552 KB |
testcase_16 | AC | 139 ms
7,552 KB |
testcase_17 | AC | 155 ms
8,064 KB |
testcase_18 | AC | 187 ms
8,576 KB |
testcase_19 | AC | 193 ms
8,960 KB |
testcase_20 | AC | 218 ms
9,216 KB |
testcase_21 | AC | 234 ms
9,856 KB |
testcase_22 | AC | 262 ms
10,240 KB |
testcase_23 | AC | 277 ms
10,496 KB |
testcase_24 | AC | 305 ms
11,008 KB |
testcase_25 | AC | 326 ms
11,520 KB |
testcase_26 | AC | 347 ms
11,776 KB |
testcase_27 | AC | 2 ms
6,944 KB |
testcase_28 | AC | 3 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 138 ms
7,552 KB |
testcase_31 | AC | 136 ms
7,552 KB |
testcase_32 | AC | 2 ms
6,944 KB |
testcase_33 | AC | 2 ms
6,940 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i,n) for(long long i = 0; i < (n); i++) #define FOR(i, m, n) for(long long i = (m);i < (n); ++i) #define ALL(obj) (obj).begin(),(obj).end() #define SPEED cin.tie(0);ios::sync_with_stdio(false); template<class T> using V = vector<T>; template<class T, class U> using P = pair<T, U>; template<class T> using PQ = priority_queue<T>; template<class T> using PQR = priority_queue<T,vector<T>,greater<T>>; constexpr long long MOD = (long long)1e9 + 7; constexpr long long MOD2 = 998244353; constexpr long long HIGHINF = (long long)1e18; constexpr long long LOWINF = (long long)1e15; constexpr long double PI = 3.1415926535897932384626433; template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);} template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));} template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}} template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;} template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;} template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;} template <template <class tmp> class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;} void print(void) {cout << endl;} template <class Head> void print(Head&& head) {cout << head;print();} template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);} template <class T> void chmax(T& a, const T b){a=max(a,b);} template <class T> void chmin(T& a, const T b){a=min(a,b);} void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;} void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;} void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;} /* * @title Rbst */ template<class Operator> class Rbst { using TypeNode = typename Operator::TypeNode; unsigned int x = 123456789, y = 362436069, z = 521288629, w = 88675123; unsigned int xor_shift() { unsigned int t = (x ^ (x << 11)); x = y; y = z; z = w; return (w = (w ^ (w >> 19)) ^ (t ^ (t >> 8))); } struct Node { Node *left, *right; TypeNode val; int size; TypeNode sum; Node() : val(Operator::unit_node), size(1), sum(Operator::unit_node) { left = right = nullptr; } Node(TypeNode v) : val(v), size(1), sum(v) { left = right = nullptr; } }; Node* root; inline int size(Node *node) { return node==nullptr ? 0 : node->size; } inline TypeNode sum(Node *node) { return node==nullptr ? Operator::unit_node : node->sum; } inline Node* update(Node *node) { node->size = size(node->left) + size(node->right) + 1; node->sum = Operator::func_node(sum(node->left),sum(node->right),node->val); return node; } inline TypeNode get(Node *node, int k) { if (node==nullptr) return -1; if (k == size(node->left)) return node->val; if (k < size(node->left)) return get(node->left, k); else return get(node->right, k-1 - size(node->left)); } inline int lower_bound(Node *node, TypeNode val) { if (node==nullptr) return 0; if (val <= node->val) return lower_bound(node->left, val); else return size(node->left) + lower_bound(node->right, val) + 1; } inline int upper_bound(Node *node, TypeNode val) { if (node==nullptr) return 0; if (val >= node->val) return size(node->left) + upper_bound(node->right, val) + 1; else return upper_bound(node->left, val); } Node* merge(Node *left, Node *right) { if (left==nullptr) return right; if (right==nullptr) return left; if (xor_shift() % (left->size + right->size) < left->size) { left->right = merge(left->right, right); return update(left); } else { right->left = merge(left, right->left); return update(right); } } pair<Node*, Node*> split(Node* node, int k) { if (node==nullptr) return make_pair(node, node); if (k <= size(node->left)) { pair<Node*, Node*> sub = split(node->left, k); node->left = sub.second; return make_pair(sub.first, update(node)); } else { pair<Node*, Node*> sub = split(node->right, k-1 - size(node->left)); node->right = sub.first; return make_pair(update(node), sub.second); } } Rbst(Node* node):root(node){} public: Rbst() : root(nullptr) {} inline int size() { return size(this->root); } inline TypeNode sum() { return sum(this->root); } inline int lower_bound(TypeNode val) { return lower_bound(this->root, val); } inline int upper_bound(TypeNode val) { return upper_bound(this->root, val); } inline int count(TypeNode val) { return upper_bound(val) - lower_bound(val); } inline TypeNode get(int k) { return get(this->root, k); } inline TypeNode get_median() { //奇数の時N/2 return get(this->root, (size()-1)/2); } void merge(Rbst another) { root = merge(this->root, another.root); } void insert(const TypeNode val) { pair<Node*, Node*> sub = split(this->root, this->lower_bound(val)); this->root = this->merge(this->merge(sub.first, new Node(val)), sub.second); } void erase(const TypeNode val) { if (!this->count(val)) return; pair<Node*, Node*> sub = this->split(this->root, this->lower_bound(val)); this->root = this->merge(sub.first, this->split(sub.second, 1).second); } }; //https://atcoder.jp/contests/abc154/tasks/abc154_c //https://atcoder.jp/contests/arc033/tasks/arc033_3 //https://atcoder.jp/contests/m-solutions2020/tasks/m_solutions2020_c template<class T> struct NodeSimple { using TypeNode = T; inline static constexpr TypeNode unit_node = 0; inline static constexpr TypeNode func_node(TypeNode l,TypeNode c,TypeNode r){return 0;} }; int main() { cin.tie(0);ios::sync_with_stdio(false); Rbst<NodeSimple<ll>> st; int Q,K; cin >> Q >> K; while (Q--){ int q; cin >> q; if(q==1){ ll x; cin >> x; st.insert(x); } else{ ll x=-1; if(st.size()>=K){ x=st.get(K-1); st.erase(x); } cout << x << endl; } } return 0; }