# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
894179 | vovik | Bubble Sort 2 (JOI18_bubblesort2) | C++98 | 2223 ms | 41564 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.
#pragma GCC optimize(3)
#include <bits/stdc++.h>
std::vector<int> countScans(std::vector<int> A, std::vector<int> X, std::vector<int> V);
struct node {
std::pair<int, int> x;
int y = rand();
int L = 0, R = 0;
int sz = 1;
int cost = -1e9;
};
const int N = 1e6 + 5;
node t[N];
int cur = 0;
void pull(int v) {
t[v].sz = t[t[v].L].sz + t[t[v].R].sz + 1;
t[v].cost = std::max({t[t[v].L].cost, t[v].x.second - t[t[v].L].sz, t[t[v].R].cost - t[t[v].L].sz - 1});
}
int merge(int v, int u) {
if (!v || !u) return v | u;
if (t[v].y > t[u].y) return t[v].R = merge(t[v].R, u), pull(v), v;
return pull(t[u].L = merge(v, t[u].L)), pull(u), u;
}
std::pair<int, int> split(int v, std::pair<int, int> x) {
if (!v) return {v, v};
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |