铁轨(经典栈操作)

#include <cstdio>
#include <stack>
using namespace std;

const int MAXN=1000+10;

int n,target[MAXN];

int main()
{
    while(scanf("%d",&n)==1&&n!=0){
        stack<int>s;
        int A=1,B=1;
        for(int i=1;i<=n;i++)scanf("%d",&target[i]);
        int ok=1;
        while(B<=n){
            if(A==target[B]){
                A++;
                B++;
            }
            else if(!s.empty()&&s.top()==target[B]){
                s.pop();
                B++;
            }
            else if(A<=n)s.push(A++);
            else{
                ok=0;
                break;
            }
        }
        printf("%s\n",ok?"Yes":"No");
    }
    //system("pause");
    return 0;
}

 

posted @ 2016-04-11 22:26  Not-Bad  阅读(79)  评论(0编辑  收藏  举报