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 unsigned long long
  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. #define pb push_back
  14.  
  15. const int N=1e7;
  16. const int mod=1e9+7;
  17.  
  18. multiset<int>s;
  19. signed main(){
  20. ios_base::sync_with_stdio(0);
  21. cin.tie(0);
  22. cout.tie(0);
  23. // freopen("bai1.INP","r",stdin);
  24. // freopen("bai1.OUT","w",stdout);
  25. int n;cin>>n;
  26. for1(i,1,n){
  27. int x;cin>>x;
  28. auto u=s.upper_bound(x);
  29. if(u==s.end()) s.insert(x);
  30. else
  31. {
  32. s.erase(u);
  33. s.insert(x);
  34. }
  35.  
  36. }
  37. cout<<s.size();
  38. return 0;
  39. }
  40.  
Success #stdin #stdout 0.01s 5276KB
stdin
Standard input is empty
stdout
Standard output is empty