cff_0102
2025-01-10 14:13:45
题意简述:求前缀次大值。
用两个变量
每加一个数后就输出当前的
#include<bits/stdc++.h>
using namespace std;
int main(){
ios::sync_with_stdio(0);cin.tie(0);
int n;cin>>n;
int mx=0,mx2=0;
cin>>mx;
while(--n){
int x;cin>>x;
if(x>=mx)mx2=mx,mx=x;
else if(x>=mx2)mx2=x;
cout<<mx2<<" ";
}
return 0;
}