이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
vector<int> v(n);
for (int& i : v) cin >> i;
vector<int> compress = v;
sort(compress.begin(), compress.end());
for (int& i : v)
i = lower_bound(compress.begin(), compress.end(), i) - compress.begin();
vector<int> nxt(n, -1), last(n, -1), res(n);
for (int i = n-1; i >= 0; i--)
{
if (last[v[i]] == -1)
last[v[i]] = i;
else
nxt[i] = last[v[i]];
}
for (int i = 0; i < n; i++)
{
if (nxt[i] != -1)
{
int j = nxt[i];
while (i < j) res[i++] = compress[v[j]];
res[i] = compress[v[j]];
}
else
res[i] = compress[v[i]];
}
for (int i : res)
cout << i << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |