HDU 4006: The kth great number
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 4006: The kth great number相关的知识,希望对你有一定的参考价值。
The kth great number
///@author Sycamore ///@date 8/8/2017 #include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, k; while (cin >> n >> k) { char ch; int t; multiset<int>s; while (n--) { cin >> ch; if (ch == ‘I‘) { cin >> t; s.insert(t); if (s.size() > k)s.erase(s.begin()); } else cout <<*s.begin()<<endl ; } } return 0; }
以上是关于HDU 4006: The kth great number的主要内容,如果未能解决你的问题,请参考以下文章
HDU 4006The kth great number(K大数 + 堆)