# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
56545 | andremfq | Land of the Rainbow Gold (APIO17_rainbow) | C++17 | 1862 ms | 336480 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>
#define sz(x) (int((x).size()))
struct RT {
struct node {
int sum, left, right;
node() : sum(0), left(0), right(0) {}
node(const node &n) : sum(n.sum), left(n.left), right(n.right) {}
node(int s, int l, int r) : sum(s), left(l), right(r) {}
};
std::vector<node> nodes;
int newNode(node n = node()) {
nodes.push_back(n);
return sz(nodes) - 1;
}
int init(int nl, int nr) {
int n = newNode();
int nm = (nl+nr)/2;
if (nl+1 < nr) {
int l = init(nl, nm);
nodes[n].left = l;
int r = init(nm, nr);
nodes[n].right = r;
}
return 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |