# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
50206 | rondojim | medians (balkan11_medians) | C++17 | 121 ms | 22668 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e5 + 5;
int A[2 * MAXN], B[MAXN], N, vis[2 * MAXN];
set<int> S;
int main(){
scanf("%d", &N);
for(int i=1; i<=N; ++i) scanf("%d", &B[i]);
for(int i=1; i<2*N; ++i) S.insert(i);
for(int i=1; i<N; ++i){ if(S.find(B[i]) != S.end()) S.erase(S.find(B[i])); }
A[1] = B[1];
for(int i=N; i>=2; --i){
int p = B[i - 1], c = B[i];
set<int>::iterator it;
if(c > p){
for(int j=2*i-1; j>=2*i-2; --j){
auto it = S.lower_bound(B[i]);
A[j] = *it;
S.erase(it);
}
}
else if(c < p){
for(int j=2*i-1; j>=2*i-2; --j){
it = S.lower_bound(B[i - 1]);
if(*it >= B[i - 1]) --it;
A[j] = *it;
S.erase(it);
}
}
else{
it = S.upper_bound(B[i]);
A[2 * i - 1] = *it;
S.erase(it);
it = S.lower_bound(B[i]);
if(*it >= B[i]) --it;
A[2 * i - 2] = *it;
S.erase(it);
}
if(!vis[B[i - 1]]){ S.insert(B[i - 1]); vis[B[i - 1]] = 1; }
}
for(int i=1; i<2*N; ++i) printf("%d ", A[i]);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |