# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
930304 | noyancanturk | Secret (JOI14_secret) | C++17 | 358 ms | 4532 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 "secret.h"
#include <cassert>
const int lim=1100;
int n,*a;
int left[15][lim],right[15][lim];
void dnc(int l,int r,int dep=0){
if(l==r){
return;
}
int mid=(l+r)>>1;
left[dep][mid]=a[mid];
for(int i=mid-1;l<=i;i--){
left[dep][i]=Secret(a[i],left[dep][i+1]);
}
right[dep][mid+1]=a[mid+1];
for(int i=mid+2;i<=r;i++){
right[dep][i]=Secret(right[dep][i-1],a[i]);
}
dnc(l,mid,dep+1),dnc(mid+1,r,dep+1);
}
void Init(int N, int A[]) {
n=N;
a=A;
dnc(0,n-1);
}
int Query(int L, int R) {
if(L==R){
return a[L];
}
int l=0,r=n-1,dep=0;
while(l<=r){
int mid=(l+r)>>1;
if(L==mid+1)return right[dep][mid+1];
if(L<=mid&&mid<R){
return Secret(left[dep][L],right[dep][R]);
}else if(mid==R){
return left[dep][L];
}else if(mid<L){
l=mid+1;
}else{
r=mid-1;
}
dep++;
}
return -1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |