fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. #define for1(i,m,n) for(int i=m;i<=n;i++)
  5. #define for0(i,m,n) for(int i=m;i<n;i++)
  6.  
  7. //#define int int
  8. #define el '\n'
  9. #define fi first
  10. #define se second
  11. #define ii pair<int,int>
  12. #define vll(i) i.begin(),i.end()
  13.  
  14. const int N=1e7;
  15. const int mod=1e9+7;
  16.  
  17.  
  18.  
  19. signed main(){
  20. ios_base::sync_with_stdio(0);
  21. cin.tie(0);
  22. cout.tie(0);
  23.  
  24. int n,k;cin>>n>>k;
  25.  
  26. multiset<int,greater<int>>s;
  27. auto it=s.end();
  28. while(n--){
  29.  
  30. int x;cin>>x;
  31. s.emplace(x);
  32.  
  33. if(s.size()<k) continue;
  34. if(s.size()==k) {
  35. it=s.end();
  36. --it;
  37. cout<<*it<<el;
  38. continue;
  39. }
  40.  
  41. if(x>=*it) --it;
  42. cout<<*it<<el;
  43. }
  44. return 0;
  45. }
  46.  
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty