# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
681044 | Matteo_Verz | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++17 | 1991 ms | 79004 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 <iostream>
#include <vector>
#include <stack>
#include <algorithm>
using namespace std;
struct Query {
int l, r, w, idx, ans;
};
class SegTree {
// Update: max= on element
// Query: max on interval
private:
vector <int> a;
int n;
void _update(int node, int l, int r, int pos, int val) {
if (l == r) a[node] = max(a[node], val);
else {
int mid = (l + r) >> 1;
if (pos <= mid) _update(node << 1, l, mid, pos, val);
else _update(node << 1 | 1, mid + 1, r, pos, val);
a[node] = max(a[node << 1], a[node << 1 | 1]);
}
}
int _query(int node, int l, int r, int x, int y) {
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |