# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
24418 | Extazy | Weighting stones (IZhO11_stones) | C++14 | 69 ms | 8164 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 N = 1<<17;
const int TREE_SIZE = N<<2;
const int INF = (1e9) + 7;
struct tree_node {
int min,max,sum;
tree_node() {
min=0;
max=0;
sum=0;
}
};
int n;
tree_node tree[TREE_SIZE];
tree_node q;
tree_node merge_them(tree_node a, tree_node b) {
tree_node ans;
ans.sum=a.sum+b.sum;
ans.min=min(b.min,b.sum+a.min);
ans.max=max(b.max,b.sum+a.max);
return ans;
}
void update_tree(int a, int b, int pos, int node, int value) {
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |