# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
72009 | BOJ 8481 (#118) | Box Run (FXCUP3_box) | C++17 | 1080 ms | 1868 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 <stdio.h>
#include <algorithm>
#include <vector>
using namespace std;
int n;
int h[500010];
int x[2100000];
int base;
int get_max(int s, int e){
s += base;
e += base;
int ret = 0;
if(s == e) return x[s];
while(s < e){
if(s % 2 == 1){
ret = max(ret, x[s]);
s += 1;
}
if(e % 2 == 0){
ret = max(ret, x[e]);
e -= 1;
}
s /= 2;
e /= 2;
if(s == e){
ret = max(ret, x[e]);
}
}
return ret;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |