算法之路二:刘汝佳算法竞赛入门经典:栈和队列 铁轨UVa514

#include
#include
using namespace std;
const int maxn=1010;

int n,target[maxn];

int main()
{
    while(scanf("%d",&n)==1)
    {
        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");
    }
    return 0;
}

你可能感兴趣的:(刘汝佳)