码迷,mamicode.com
首页 > Windows程序 > 详细

AcWing 830. 单调栈

时间:2020-07-29 15:07:47      阅读:84      评论:0      收藏:0      [点我收藏+]

标签:++   amp   mes   return   ret   cout   ons   namespace   sync   

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. 单调栈

标签:++   amp   mes   return   ret   cout   ons   namespace   sync   

原文地址:https://www.cnblogs.com/wiseXu/p/13396690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!