# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
35189 | cheater2k | 중앙값 배열 (balkan11_medians) | C++14 | 56 ms | 4552 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 200005;
int n, a[N], b[N];
int T[N];
bool used[N];
void upd(int x) { for(; x < N; x += x & -x) T[x]++; }
int get(int x) { int res = 0; for (; x > 0; x -= x & -x) res += T[x]; return res; }
int main() {
scanf("%d", &n);
for (int i = 1; i <= n; ++i) scanf("%d", b + i);
int l = 1, r = 2 * n - 1;
int pt = 0;
for (int i = 1; i <= n; ++i) {
if (!used[b[i]]) used[b[i]] = 1, a[++pt] = b[i], upd(b[i]);
int med = b[i];
while(pt < 2 * i - 1) {
while(l <= 2 * n - 1 && used[l]) ++l;
while(r >= 1 && used[r]) --r;
int smaller = get(med - 1);
if (smaller < i - 1) a[++pt] = l, upd(l), used[l++] = 1;
else if (pt - smaller < i) a[++pt] = r, upd(r), used[r--] = 1;
}
}
for (int i = 1; i <= 2 * n - 1; ++i) printf("%d ", a[i]);
printf("\n");
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |