# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
546744 | krit3379 | Secret (JOI14_secret) | C++17 | 454 ms | 8268 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;
#include"secret.h"
#define N 1005
int n,dp[N][N];
void sol(int l,int r,int type,int *a){
if(l==r)return void(dp[l][r]=a[l]);
int mid=(l+r)/2;
sol(l,mid,type,a);
sol(mid+1,r,type,a);
if(type==1)for(int i=l;i<=mid;i++)dp[i][r]=Secret(dp[i][mid],dp[mid+1][r]);
else for(int i=mid+1;i<=r;i++)dp[l][i]=Secret(dp[l][mid],dp[mid+1][i]);
}
void Init(int nn, int *a){
n=nn;
for(int i=0;i<n;i++)for(int j=0;j<n;j++)dp[i][j]=-1;
sol(0,(n-1)/2,1,a);
if(n>1)sol((n-1)/2+1,n-1,2,a);
}
int Query(int ll, int rr){
int l=0,r=n-1;
if(ll==rr)return dp[ll][rr];
if(ll<=(n-1)/2&&rr>(n-1)/2)return Secret(dp[ll][(n-1)/2],dp[(n-1)/2+1][rr]);
while(l<=r){
int mid=(l+r)/2;
if(ll<=mid&&mid<rr)return Secret(dp[ll][mid],dp[mid+1][rr]);
if(rr<=mid)r=mid;
else l=mid+1;
}
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |