AcWing 830. 单调栈

Posted wisexu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 830. 单调栈相关的知识,希望对你有一定的参考价值。

AcWing 830. 单调栈


#include <bits/stdc++.h>
using namespace std;
const int N=1e6+10;
int n;
int stk[N],tt;
int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    cin>>n;
    for(int i=0;i<n;i++){
        int x;
        cin>>x;
        while(tt&&stk[tt]>=x) tt--;
        if(tt) cout<<stk[tt]<<‘ ‘;
        else cout<<-1<<‘ ‘;
        stk[++tt]=x;
    }
    return 0;
}

以上是关于AcWing 830. 单调栈的主要内容,如果未能解决你的问题,请参考以下文章

AcWing 830. 单调栈

830. 单调栈

AcWing基础算法课Level-2 第二讲 数据结构

830. 单调栈

AcWing 1904. 奶牛慢跑(单调栈)

AcWing - 131 - 直方图中最大的矩形 = 单调栈