1051 Pop Sequence (25point(s)) 需要二刷*栈的出栈顺序问题

Posted songlinxuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1051 Pop Sequence (25point(s)) 需要二刷*栈的出栈顺序问题相关的知识,希望对你有一定的参考价值。

基本思想:

一直不知道模拟思想是个什么思想,后续需要补全一下;

 

本质上就是模拟栈的弹出压入问题,主体部分写出来了,但是忘了判断压栈过程中可能容量爆栈;

 

关键点:

模拟问题;

 

#include<iostream>
#include<stdlib.h>
#include<stdio.h>
#include<vector> 
#include<string>
#include<math.h>
#include<algorithm>
#include<cstring>
#include<map>
#include<queue>
#include<set>
#include<stack>
using namespace std;


int n, m, k;

int main() {
    cin >> m >> n >> k;
    //m 栈容量;
    //n 压栈元素个数;
    for (int i = 0; i < k; i++) {
        stack<int>st;
        vector<int>seq(n);
        for (int j = 0; j < n; j++) {
            cin >> seq[j];
        }
        bool flag = true;
        int index = 0;
        for (int i = 1; i <= n; i++) {
            st.push(i);
            if (st.size() > m) {
                flag = false;
                break;
            }
            while (!st.empty()&&st.top() == seq[index]) {
                st.pop();
                index++;
            }
        }
        if (st.empty() && flag)
            cout << "YES" << endl;
        else
            cout << "NO" << endl;
    }
    return 0;
}

 

以上是关于1051 Pop Sequence (25point(s)) 需要二刷*栈的出栈顺序问题的主要内容,如果未能解决你的问题,请参考以下文章

1051. Pop Sequence (25)

1051. Pop Sequence (25)

PAT1051. Pop Sequence (25)

1051 Pop Sequence (25分)

1051 Pop Sequence (25 分)难度: 中 / 知识点: 模拟 栈

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