0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2021-08-27 20:09:43 +08:00 committed by Baoshuo Ren
parent 1ef3672428
commit d0372f7608
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

22
AcWing/830/830.cpp Normal file
View File

@ -0,0 +1,22 @@
#include <bits/stdc++.h>
using namespace std;
int n, a;
stack<int> st;
int main() {
cin >> n;
for (int i = 0; i < n; i++) {
cin >> a;
while (!st.empty() && st.top() >= a) st.pop();
if (st.empty()) {
cout << -1 << ' ';
} else {
cout << st.top() << ' ';
}
st.push(a);
}
cout << endl;
return 0;
}