Advertisement
Diene

Untitled

Mar 3rd, 2018
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.07 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     int x;
  9.  
  10.     while(1)
  11.     {
  12.         int ok=0;
  13.         scanf("%d", &x);
  14.         for(int i=1; i<=x; i++)
  15.         {
  16.  
  17.             int k;
  18.             scanf("%d", &k);
  19.             int m=1;
  20.             stack<int>pilha;
  21.             if(k==m)
  22.             {
  23.                 m++;
  24.                 ok=1;
  25.             }
  26.             else if(k!=m)
  27.             {
  28.                 pilha.push(k);
  29.                 m++;
  30.                 ok=1;
  31.             }
  32.             else if(pilha.size()!=0 && pilha.top()==m)
  33.             {
  34.                 pilha.pop();
  35.                 m++;
  36.                 ok=1;
  37.             }
  38.             else if(i==m)
  39.             {
  40.                 if(pilha.size()==0)
  41.                 {
  42.                     printf("yes\n");
  43.                     ok=0;
  44.                 }
  45.                 else if(pilha.size()!=0)
  46.                 {
  47.                     printf("no\n");
  48.                     ok=0;
  49.                 }
  50.             }
  51.             if(ok=0)break;
  52.         }
  53.     }
  54.     return 0;
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement