记录编号 |
239493 |
评测结果 |
AAAAAAAAAA |
题目名称 |
监考老师 |
最终得分 |
100 |
用户昵称 |
灰里城 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.882 s |
提交时间 |
2016-03-20 11:44:59 |
内存使用 |
4.13 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<stack>
using namespace std;
const int maxn=1000005;
int a[maxn]={0};
stack<int> s;
int read();
int main(){
freopen("smallblack.in","r",stdin);
freopen("smallblack.out","w",stdout);
int n=read();
for(int i=1;i<=n;i++){
a[i]=read();
while(!s.empty()&&a[i]<=a[s.top()])s.pop();
if(s.empty())printf("0 ");
else printf("%d ",a[s.top()]);
s.push(i);
}
fclose(stdin);
fclose(stdout);
return 0;
}
int read(){
int x;char ch;
while(ch=getchar(),ch<'0'||ch>'9');
x=ch-'0';
while(ch=getchar(),ch>='0'&&ch<='9')x=x*10+ch-'0';
return x;
}