結果
問題 | No.649 ここでちょっとQK! |
ユーザー | Kutimoti_T |
提出日時 | 2018-05-27 09:53:06 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 280 ms / 3,000 ms |
コード長 | 2,587 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 172,364 KB |
実行使用メモリ | 9,972 KB |
最終ジャッジ日時 | 2024-06-28 18:24:16 |
合計ジャッジ時間 | 6,721 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 280 ms
7,800 KB |
testcase_04 | AC | 196 ms
9,972 KB |
testcase_05 | AC | 203 ms
9,972 KB |
testcase_06 | AC | 175 ms
7,668 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 113 ms
6,500 KB |
testcase_13 | AC | 116 ms
6,500 KB |
testcase_14 | AC | 117 ms
6,536 KB |
testcase_15 | AC | 114 ms
6,504 KB |
testcase_16 | AC | 114 ms
6,504 KB |
testcase_17 | AC | 121 ms
6,616 KB |
testcase_18 | AC | 135 ms
6,868 KB |
testcase_19 | AC | 148 ms
6,976 KB |
testcase_20 | AC | 159 ms
7,352 KB |
testcase_21 | AC | 171 ms
8,492 KB |
testcase_22 | AC | 184 ms
8,744 KB |
testcase_23 | AC | 198 ms
8,992 KB |
testcase_24 | AC | 208 ms
9,228 KB |
testcase_25 | AC | 218 ms
9,476 KB |
testcase_26 | AC | 236 ms
9,656 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 81 ms
5,932 KB |
testcase_31 | AC | 80 ms
5,732 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 1 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using i64 = long long; #define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++) /* include file*/ #include <functional> #include <vector> using namespace std; template <class Monoid> struct Segment { using Func = function<Monoid(Monoid, Monoid)>; vector<Monoid> node; Monoid ide; int n = 1; Func bin_f; Func update_f; Segment(const vector<Monoid>& init, Monoid ide_, Func f_, Func u_f) : bin_f(f_), ide(ide_), update_f(u_f) { int sz = init.size(); while (n < sz) n *= 2; node.assign(n * 2 - 1, ide); for (int i = 0; i < sz; i++) node[i + n - 1] = init[i]; for (int i = n - 2; i >= 0; i--) node[i] = bin_f(node[i * 2 + 1], node[i * 2 + 2]); } void update(int i, Monoid x) { i += n - 1; node[i] = update_f(node[i], x); while (i) { i = (i - 1) / 2; node[i] = bin_f(node[i * 2 + 1], node[i * 2 + 2]); } } Monoid get_inter(int a, int b, int k = 0, int l = 0, int r = -1) { if (r < 0) r = n; if (a <= l && r <= b) return node[k]; if (r <= a || b <= l) return ide; Monoid lm = get_inter(a, b, k * 2 + 1, l, (l + r) / 2); Monoid rm = get_inter(a, b, k * 2 + 2, (l + r) / 2, r); return bin_f(lm, rm); } int lower_bound(int v,int k = 0,int l = 0,int r = -1){ if(r < 0) r = n; if(l + 1 == r){ return l; } if(node[k * 2 + 1] < v){ return lower_bound(v - node[k * 2 + 1],k * 2 + 2,(l + r) / 2,r); } else{ return lower_bound(v,k * 2 + 1,l,(l + r) / 2); } } }; // http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=2730414#1 // http://judge.u-aizu.ac.jp/onlinejudge/review.jsp?rid=2730425#1 int Q,K; int main(){ cin >> Q >> K; vector<int> q(Q); vector<i64> v(Q); vector<i64> vec; rep(i,0,Q - 1){ cin >> q[i]; if(q[i] == 1){ cin >> v[i]; vec.push_back(v[i]); } } sort(vec.begin(),vec.end()); vec.erase(unique(vec.begin(),vec.end()),vec.end()); rep(i,0,Q - 1) v[i] = lower_bound(vec.begin(),vec.end(),v[i]) - vec.begin(); Segment<int> seg(vector<int>(vec.size(),0),0,[](int a,int b){ return a + b; },[](int a,int b){ return a + b; }); vector<i64> ans; rep(i,0,Q - 1){ if(q[i] == 1){ seg.update(v[i],1); } else{ if(seg.node[0] < K) ans.push_back(-1); else{ ans.push_back(seg.lower_bound(K)); seg.update(ans.back(),-1); } } } for(int i : ans){ if(i == -1){ cout << -1 << endl; } else{ cout << vec[i] << endl; } } }