Advertisement
sherry_ahmos

Untitled

Nov 22nd, 2022 (edited)
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.49 KB | None | 0 0
  1. #include <iostream>
  2. #include <iomanip>
  3. #include <string>
  4. #include <algorithm>
  5. #include <cmath>
  6. #include <vector>
  7. #include <queue>
  8. #include <map>
  9. #include <set>
  10. #include <stack>
  11. #include <unordered_map>
  12. #include <unordered_set>
  13. using namespace std;
  14.  
  15. #define ll long long
  16. #define nl "\n"
  17. #define cy cout << "YES\n"
  18. #define cn cout << "NO\n"
  19. #define sz(s) s.size()
  20. #define all(v) v.begin(), v.end()
  21. #define cin(vec) for (int i = 0; i < n && cin >> vec[i]; i++)
  22. #define cout(vec) for (int i = 0; i < n && cout << vec[i] << " "; i++)
  23.  
  24. void sherry()
  25. {
  26.     ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
  27. #ifndef ONLINE_JUDGE
  28.     freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
  29. #endif
  30. }
  31. void solve()
  32. {
  33.     int n;
  34.     cin >> n;
  35.     stack<int> st2;
  36.     for (int i = n; i > 0; i--)
  37.     {
  38.         st2.push(i);
  39.     }
  40.     stack<int> st;
  41.     for (int i = 0; i < n; i++)
  42.     {
  43.         int num;
  44.         cin >> num;
  45.         if (st2.top() <= num)
  46.         {
  47.             cout << num << nl;
  48.             while (st2.top() <= num&&!st2.empty())
  49.             {
  50.                 st.push(st2.top());
  51.                 st2.pop();
  52.             }
  53.         }
  54.         if (st.top() == num)
  55.         {
  56.             st.pop();
  57.         }
  58.         else
  59.         {
  60.             cn;
  61.             return;
  62.         }
  63.     }
  64.     cy;
  65. }
  66. /*
  67.  
  68.  */
  69. int main()
  70. {
  71.     sherry();
  72.     int t = 1;
  73.     // cin >> t;
  74.     while (t--)
  75.     {
  76.         solve();
  77.     }
  78.     return 0;
  79. }
  80.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement