STL stack을 이용해서 문제를 풀었다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n, m, max = -1;
scanf("%d", &n);
stack<pair<int, int>> S;
for (int i = 1; i <= n; ++i)
{
scanf("%d", &m);
while (!S.empty())
{
if (S.top().second < m)
S.pop();
else if (S.top().second >= m)
{
printf("%d ", S.top().first);
break;
}
}
if (S.empty())
printf("%d ", 0);
S.push({ i, m });
}
}