P5788 模板单调栈

Posted 辉小歌

tags:

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


https://www.luogu.com.cn/problem/P5788

#include<bits/stdc++.h>
using namespace std;
const int N=1e6*3+10;
int a[N],n,ans[N];
stack<int>st;
int main(void)
{
	cin>>n;
	for(int i=1;i<=n;i++) cin>>a[i];
	for(int i=n;i>=1;i--)
	{
		while(st.size()&&a[st.top()]<=a[i]) st.pop();
		if(st.size()&&a[st.top()]>a[i]) ans[i]=st.top();
		st.push(i);
	}
	for(int i=1;i<=n;i++) cout<<ans[i]<<" ";
	return 0;
}

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

线性表--单调栈

单调队列单调栈优先队列模板

单调栈算法 入门+博客推荐+模板

模板 - 数据结构 - 单调队列/单调栈

739. 每日温度 : 单调栈模板题

模板 单调栈