0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 06:45:26 +00:00
OI-codes/Luogu/problem/P5788/P5788.cpp
2021-08-03 08:19:50 +08:00

25 lines
490 B
C++

#include <bits/stdc++.h>
using namespace std;
int n, a[3000005], f[3000005];
stack<int> st;
int main() {
std::ios::sync_with_stdio(false);
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> a[i];
}
for (int i = n; i >= 1; i--) {
while (!st.empty() && a[st.top()] <= a[i]) st.pop();
f[i] = st.empty() ? 0 : st.top();
st.push(i);
}
for (int i = 1; i <= n; i++) {
cout << f[i] << ' ';
}
cout << endl;
return 0;
}