Advertisement
sherry_ahmos

Untitled

Nov 22nd, 2022
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.38 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.     int arr[n + 5]{};
  36.     stack<int> st;
  37.     for (int i = 0; i < n; i++)
  38.     {
  39.         int num;
  40.         cin >> num;
  41.         for (int j = 1; j <= num; j++)
  42.         {
  43.             if (arr[j] == 0)
  44.             {
  45.                 st.push(j);
  46.                 arr[j] = 1;
  47.             }
  48.         }
  49.         if (st.top() == num)
  50.         {
  51.             st.pop();
  52.         }
  53.         else
  54.         {
  55.             cn;
  56.             return;
  57.         }
  58.     }
  59.     cy;
  60. }
  61. /*
  62.  
  63.  */
  64. int main()
  65. {
  66.     sherry();
  67.     int t = 1;
  68.     // cin >> t;
  69.     while (t--)
  70.     {
  71.         solve();
  72.     }
  73.     return 0;
  74. }
  75.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement