我是靠谱客的博主 认真紫菜,最近开发中收集的这篇文章主要介绍[单调栈] 102302 A题目思路代码,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

题目

题目链接:https://codeforces.com/gym/102302/problem/A

思路

单调栈!
要想办法让栈单调递增,每次和把新输入的数字与栈顶比较,如过大于栈顶就与上一格继续比较,直到找到栈顶大于输入的数字的。自己模拟一下过程比较好

代码

#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<cctype>
#include<ctime>
#include<iostream>
#include<string>
#include<map>
#include<queue>
#include<stack>
#include<set>
#include<vector>
#include<iomanip>
#include<list>
#include<bitset>
#include<sstream>
#include<fstream>
#include<complex>
#include<algorithm>
#if __cplusplus >= 201103L
#include <unordered_map>
#include <unordered_set>
#endif
#define ll long long
using namespace std;
const int INF = 0x3f3f3f3f;
int a[100010],res[100010];
int main(){
ios::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int n;
cin>>n;
stack<int> st;
for(int i=1;i<=n;i++){
cin>>a[i];
if(st.empty()||a[st.top()]>=a[i]){
st.push(i);
}
else{
while(!st.empty()&&a[st.top()]<a[i]){
int top=st.top();
st.pop();
res[top]=min(i,top+a[top]+1);
}
st.push(i);
}
}
for(int i=n;i>=1;i--){
if(res[i]==0) res[i]=n+1;
}
//	for(int i=1;i<=n;i++) cout<<res[i]<<endl;
for(int i=1;i<=n;i++) if(res[i]!=0) cout<<min(res[i]-i-1,a[i])<<" ";
return 0;
}

最后

以上就是认真紫菜为你收集整理的[单调栈] 102302 A题目思路代码的全部内容,希望文章能够帮你解决[单调栈] 102302 A题目思路代码所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(32)

评论列表共有 0 条评论

立即
投稿
返回
顶部