結果
問題 | No.649 ここでちょっとQK! |
ユーザー | momohara |
提出日時 | 2019-11-13 00:25:19 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 268 ms / 3,000 ms |
コード長 | 3,431 bytes |
コンパイル時間 | 980 ms |
コンパイル使用メモリ | 107,500 KB |
実行使用メモリ | 22,536 KB |
最終ジャッジ日時 | 2024-09-19 16:34:41 |
合計ジャッジ時間 | 6,834 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 241 ms
8,244 KB |
testcase_04 | AC | 165 ms
22,536 KB |
testcase_05 | AC | 164 ms
22,512 KB |
testcase_06 | AC | 55 ms
8,320 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 125 ms
13,184 KB |
testcase_13 | AC | 124 ms
13,184 KB |
testcase_14 | AC | 123 ms
13,164 KB |
testcase_15 | AC | 117 ms
13,192 KB |
testcase_16 | AC | 107 ms
13,188 KB |
testcase_17 | AC | 124 ms
14,032 KB |
testcase_18 | AC | 137 ms
14,748 KB |
testcase_19 | AC | 154 ms
15,580 KB |
testcase_20 | AC | 174 ms
16,312 KB |
testcase_21 | AC | 190 ms
17,156 KB |
testcase_22 | AC | 203 ms
17,876 KB |
testcase_23 | AC | 232 ms
18,728 KB |
testcase_24 | AC | 236 ms
19,452 KB |
testcase_25 | AC | 260 ms
20,292 KB |
testcase_26 | AC | 268 ms
21,136 KB |
testcase_27 | AC | 4 ms
6,940 KB |
testcase_28 | AC | 4 ms
6,944 KB |
testcase_29 | AC | 3 ms
6,940 KB |
testcase_30 | AC | 91 ms
11,012 KB |
testcase_31 | AC | 89 ms
11,012 KB |
testcase_32 | AC | 3 ms
6,944 KB |
testcase_33 | AC | 3 ms
6,940 KB |
testcase_34 | AC | 3 ms
6,940 KB |
testcase_35 | AC | 3 ms
6,944 KB |
ソースコード
#include <iostream> #include<queue> #include<stack> #include<vector> #include<set> #include<map> #include<algorithm> #include<cstring> #include<string> #include<cassert> #include<cmath> #include<climits> #include<iomanip> #include<bitset> #include<unordered_map> using namespace std; #define REP(i,n) for(ll (i)=0;(i)<(n);(i)++) #define rep(i,j,n) for(ll (i)=(j);(i)<(n);(i)++) #define FOR(i,c) for(decltype((c).begin())i=(c).begin();i!=(c).end();++i) #define ll long long #define ull unsigned long long #define all(hoge) (hoge).begin(),(hoge).end() typedef pair<ll, ll> P; const long long INF = 1LL << 60; const long long MOD = 1e9 + 7; typedef vector<ll> Array; typedef vector<Array> Matrix; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } //グラフ関連 struct Edge {//グラフ ll to, cap, rev; Edge(ll _to, ll _cap, ll _rev) { to = _to; cap = _cap; rev = _rev; } }; typedef vector<Edge> Edges; typedef vector<Edges> Graph; void add_edge(Graph& G, ll from, ll to, ll cap, bool revFlag, ll revCap) { G[from].push_back(Edge(to, cap, (ll)G[to].size())); if (revFlag)G[to].push_back(Edge(from, revCap, (ll)G[from].size() - 1)); } class SumSegTree { private: int _sum(int a, int b, int k, int l, int r) { if (r <= a || b <= l)return 0; // 交差しない if (a <= l && r <= b)return dat[k]; // a,l,r,bの順で完全に含まれる else { int s1 = _sum(a, b, 2 * k + 1, l, (l + r) / 2); // 左の子 int s2 = _sum(a, b, 2 * k + 2, (l + r) / 2, r); // 右の子 return s1 + s2; } } public: int n, height; vector<int> dat; // 初期化(_nは最大要素数) SumSegTree(int _n) { n = 1; height = 1; while (n < _n) { n *= 2; height++; } dat = vector<int>(2 * n - 1, 0); } // 場所i(0-indexed)にxを足す void add(int i, int x) { i += n - 1; // i番目の葉ノードへ dat[i] += x; while (i > 0) { // 下から上がっていく i = (i - 1) / 2; dat[i] += x; } } // 区間[a,b)の総和。ノードk=[l,r)に着目している。 int sum(int a, int b) { return _sum(a, b, 0, 0, n); } int find_by_order(int k) { //k番目の要素を返す ll l = -1; ll r = n; ll x = n; while (r - l > 1) { ll mid = l + r >> 1; if (sum(0, mid + 1) >= k) { x = mid; r = mid; } else { l = mid; } } return x; } int order_of_key(int k) { //kが何番目かを返す return sum(0, k); } void insert(int k) { add(k, 1); } void erase(int k) { add(k, -1); } }; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); ll q, k; cin >> q >> k; vector<P> qs(q); map<ll, ll> mp; REP(i, q) { cin >> qs[i].first; if (qs[i].first == 1) { cin >> qs[i].second; mp[qs[i].second]++; } else { qs[i].second = 0; } } ll num = 0; Array vs; for (auto i : mp) { vs.push_back(i.first); mp[i.first] = num; num++; } SumSegTree st(2e5+10); ll size = 0; REP(i, q) { if (qs[i].first == 1) { st.insert(mp[qs[i].second]); //cout << "b:" << qs[i].second << mp[qs[i].second] << endl; size++; } else { if (size >= k) { ll kk = st.find_by_order(k); cout << vs[kk] << endl; st.erase(kk); size--; } else { cout << -1 << endl; } } } return 0; }