mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 12:18:48 +00:00
25 lines
490 B
C++
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;
|
|
}
|