이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
int main() {
std::cin.tie(nullptr)->sync_with_stdio(false);
int n;
std::cin >> n;
std::vector<int> left(n);
std::iota(left.begin(), left.end(), 0);
std::set<int> st;
std::map<int, int> pos;
std::vector<int> a(n);
for (int i = 0; i < n; ++i) std::cin >> a[i];
for (int i = 0; i < n; ++i) {
if (pos.count(a[i])) {
int j = pos[a[i]];
left[i] = left[j];
while (st.size() && *--st.end() >= j) {
pos.erase(a[*--st.end()]), st.erase(--st.end());
}
}
pos[a[i]] = i;
st.insert(i);
}
for (int i = n - 1; i >= 0;) {
int c = a[i];
int j = left[i];
while (i >= j) a[i--] = c;
}
for (int i = 0; i < n; ++i) {
std::cout << a[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... |