标签:++ amp mes return ret cout ons namespace sync
#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;
}
标签:++ amp mes return ret cout ons namespace sync
原文地址:https://www.cnblogs.com/wiseXu/p/13396690.html