# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
566704 | Ooops_sorry | Rainforest Jumps (APIO21_jumps) | C++14 | 1836 ms | 85088 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>
#ifndef LOCAL
#include "jumps.h"
#endif
#define ld long double
#define ll long long
#define pb push_back
using namespace std;
const int INF = 1e9, N = 2e5 + 10;
mt19937 rnd(51);
int n;
vector<int> h, l, r, ind(N);
vector<vector<int>> po, po_r;
vector<int> t[4 * N];
struct SegTree {
vector<int> t;
int n;
void build(int n_) {
n = n_;
t.resize(2 * n);
}
void upd(int i, int val) {
i += n;
t[i] = val;
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |