이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define sz(v) (int)v.size()
using namespace std;
const int maxn = (int)2e5 + 5;
const int INF = (int)1e18 + 5;
int n;
int ar[maxn];
set<int> st[maxn];
void hehe() {
vector<int> tmp;
for (int i = 1; i <= n; i++) {
tmp.push_back(ar[i]);
}
sort(tmp.begin(), tmp.end());
tmp.resize(unique(tmp.begin(), tmp.end()) - tmp.begin());
for (int i = 1; i <= n; i++) {
ar[i] = lower_bound(tmp.begin(), tmp.end(), ar[i]) - tmp.begin() + 1;
}
}
void solve() {
cin >> n;
for (int i = 1; i <= n; i++) cin >> ar[i];
hehe();
for (int i = 1; i <= n; i++) {
int x = ar[i];
if (sz(st[x]) != 0) {
for (int j = *st[x].rbegin(); j <= i; j++) {
st[ar[j]].erase(j);
st[x].insert(j);
ar[j] = x;
}
}
st[x].insert(i);
}
for (int i = 1; i <= n; i++) {
cout << ar[i] << '\n';
}
}
/*
6
1
2
1
2
3
2
10
1
1
2
2
1
2
2
1
1
2
*/
signed main() {
ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);
solve();
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |