PAT甲题题解-1051. Pop Sequence (25)-堆栈

Posted 辰曦~文若

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PAT甲题题解-1051. Pop Sequence (25)-堆栈相关的知识,希望对你有一定的参考价值。

将1~n压入最多为m元素的栈
给出k个出栈序列,问你是否能够实现。
能输出YES
否则NO
模拟一遍即可,水题。

技术分享
#include <iostream>
#include <cstdio>
#include <string.h>
#include <algorithm>
using namespace std;

const int maxn=1005;
int m,n,k;
int seq[maxn];
int stacks[maxn];
int rear=0;

int main()
{
    int val;
    scanf("%d %d %d",&m,&n,&k);
    for(int i=0;i<k;i++){
        for(int j=0;j<n;j++){
            scanf("%d",&seq[j]);
        }
        rear=0;//对尾
        int num=0;//要压入的数
        bool flag=true;
        for(int j=0;j<n;j++){
            while(num<seq[j] && rear<m){
                stacks[rear++]=++num;
            }
            //如果栈内元素已满,则false
            if(rear>=m && num!=seq[j]){
                flag=false;
                break;
            }
            //对尾是否是要pop的元素
            if(stacks[rear-1]==seq[j])
                rear--;
            else{
                flag=false;
                break;
            }
        }
        if(flag)
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}
View Code

 

 


以上是关于PAT甲题题解-1051. Pop Sequence (25)-堆栈的主要内容,如果未能解决你的问题,请参考以下文章

PAT 1051. Pop Sequence (25)

PAT甲题题解-1075. PAT Judge (25)-排序

PAT1051. Pop Sequence (25)

PAT 甲级 1051 Pop Sequence

PAT甲题题解-1070. Mooncake (25)-排序,大水题

PAT甲题题解-1077. Kuchiguse (20)-找相同后缀