fork download
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int n;
  7. cin>>n;
  8. int List[n];
  9. for(int i = 0; i < n; i++)
  10. {
  11. cin>>List[i];
  12. }
  13.  
  14. int LIS[n];
  15. for(int i = 0; i < n; i++)
  16. {
  17. LIS[i] = 1;
  18. }
  19.  
  20. for(int i = 1; i < n; i++)
  21. {
  22. for(int j = 0; j < i; j++)
  23. {
  24. if(List[i] > List[j])
  25. {
  26. LIS[i] = max(LIS[i], 1+LIS[j]);
  27. }
  28. }
  29. }
  30.  
  31. for(int i = 0; i < n; i++)
  32. {
  33. cout<<LIS[i]<<" ";
  34. }
  35. cout<<endl;
  36. int mx = INT_MIN;
  37. for(int i = 0; i< n; i++)
  38. {
  39. if(LIS[i] > mx)mx = LIS[i];
  40. }
  41. cout<<mx<<endl;
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. }
  52.  
Success #stdin #stdout 0.01s 5288KB
stdin
7
3 4 -1 0 6 2 3
stdout
1 2 1 2 3 3 4 
4