Advertisement
Diene

Untitled

Mar 3rd, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.03 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.         if(x==0) break;
  15.         for(int i=1; i<=x; i++)
  16.         {
  17.  
  18.             int k;
  19.             scanf("%d", &k);
  20.             int m=1;
  21.             stack<int>pilha;
  22.             if(k==m)
  23.             {
  24.                 m++;
  25.                 ok=1;
  26.             }
  27.             else if(k!=m)
  28.             {
  29.                 pilha.push(k);
  30.                 m++;
  31.                 ok=1;
  32.             }
  33.             while(pilha.size()!=0 && pilha.top()==m)
  34.             {
  35.                 pilha.pop();
  36.                 m++;
  37.                 ok=1;
  38.             }
  39.             while(i==m)
  40.             {
  41.                 if(pilha.size()==0)
  42.                 {
  43.                     printf("yes\n");
  44.                 }
  45.                 else if(pilha.size()!=0)
  46.                 {
  47.                     printf("no\n");
  48.                 }
  49.                 break;
  50.             }
  51.         }
  52.     }
  53.     return 0;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement