# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
769860 | Trunkty | Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) | C++14 | 1860 ms | 100180 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define int ll
int n,m;
int arr[1000005],bef[1000005];
int maxbef[4000020],maxi[4000020],mini[4000020];
void build(int node, int l, int r){
if(l==r){
maxbef[node] = bef[l];
maxi[node] = arr[l];
mini[node] = arr[l];
}
else{
int mid = (l+r)/2;
build(node*2,l,mid);
build(node*2+1,mid+1,r);
maxbef[node] = max(maxbef[node*2],maxbef[node*2+1]);
maxi[node] = max(maxi[node*2],maxi[node*2+1]);
mini[node] = min(mini[node*2],mini[node*2+1]);
}
}
int querymaxi(int node, int l, int r, int needl, int needr){
if(l>needr or r<needl){
return 0;
}
else if(l>=needl and r<=needr){
# | 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... |