830. 单调栈
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了830. 单调栈相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/832/
大致思路:
当输入一个数的时候将其栈顶比它大的数都输出来,然后输出栈顶的元素。
并将其压入栈。
我们看例子: 以 7 为例, 此时栈里有342,栈顶元素2小于7输出2 。
其实你会发现,3 4 在栈里是没有作用,因为 此时 2 的左边比它小的数没有,即 3 4都比 2大,
我们找的是左边第一个比其值小的数,故 3 4 出栈就行了 在里面实属浪费。
#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e5+10;
int st[N],tt;
int main(void)
{
int n; cin>>n;
st[0]=-1;
while(n--)
{
int x; cin>>x;
while(st[tt]>=x&&tt) tt--;
cout<<st[tt]<<" ";
st[++tt]=x;
}
return 0;
}
y总代码:
#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e5+10;
int st[N],tt;
int main(void)
{
int n; cin>>n;
while(n--)
{
int x; cin>>x;
while(x<=st[tt]) tt--;
if(!tt) cout<<"-1"<<" ";
if(tt) cout<<st[tt]<<" ";
st[++tt]=x;
}
return 0;
}
以上是关于830. 单调栈的主要内容,如果未能解决你的问题,请参考以下文章