# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
242392 | tqbfjotld | 3단 점프 (JOI19_jumps) | C++14 | 1168 ms | 99416 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;
int n;
long long arr[500005];
vector<pair<int,int> > abpairs;
long long ans[500005];
vector<pair<pair<int,int>,int> > queries;
struct node{
int s,e;
long long ab,c,abc;
node *l,*r;
node(int _s, int _e){
s = _s;
e = _e;
if (s==e){
c = arr[s];
ab = -999999999999LL;
abc = -999999999999LL;
}
else{
l = new node(s,(s+e)/2);
r = new node((s+e)/2+1,e);
mergeval();
}
}
void mergeval(){
if (s==e){
abc = ab+c;
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... |