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. 单调栈的主要内容,如果未能解决你的问题,请参考以下文章