#include "secret.h"
#include <stdio.h>
#include <algorithm>
#include <stdlib.h>
using namespace std;
int si=1,h=1;
int dp[20][2000];
int input[2000];
void fillup(int st,int l, int r)
{
int mid, i;
if(st>=9) return ;
mid=(r+l-1)/2;
for(i=mid;i>=l;i--)
{
if(i==mid) {dp[st][i]=input[i];continue;}
dp[st][i]=Secret(input[i],dp[st][i+1]);
}
mid=(r+l+1)/2;
for(i=mid;i<=r;i++)
{
if(i==mid) {dp[st][i]=input[i];continue;}
dp[st][i]=Secret(dp[st][i-1],input[i]);
}
fillup(st+1, l, (l+r)/2);
fillup(st+1, (l+r)/2+1, r);
}
void Init(int N, int A[])
{
int i,j;
while(si<N) {si*=2;h++;}
for(i=N;i>=1;i--)
{
input[i]=A[i-1];
}
for(i=1;i<=h+1;i++)
{
for(j=1;j<=N*2;j++)
{
dp[i][j]=-1;
}
}
fillup(1,1,si);
}
int secret(int x, int y)
{
if(x==-1) return y;
else if(y==-1) return x;
return Secret(x, y);
}
int query(int x,int st,int l, int r, int s, int e)
{
int mid;
mid=(l+r)/2;
if(l+r<s*2) return query(x*2+1,st+1,(l+r)/2+1, r, s, e);
else if(l+r>e*2) return query(x*2,st+1, l, (l+r)/2, s, e);
else
{
return secret(dp[st][s],dp[st][e]);
}
}
int Query(int L, int R)
{
L++;
R++;
if(L+1==R) return Secret(input[L],input[R]);
else if(L==R) return input[L];
return query(1,1,1,si,L, R);
}
Compilation message
secret.cpp: In function 'int query(int, int, int, int, int, int)':
secret.cpp:53:9: warning: variable 'mid' set but not used [-Wunused-but-set-variable]
int mid;
^~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
172 ms |
2516 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
2 |
Correct |
165 ms |
2560 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
3 |
Incorrect |
170 ms |
2740 KB |
Wrong Answer: Query(501, 503) - expected : 479731268, actual : -1. |
4 |
Incorrect |
602 ms |
4608 KB |
Wrong Answer: Query(768, 771) - expected : 927845157, actual : -1. |
5 |
Incorrect |
630 ms |
4636 KB |
Wrong Answer: Query(84, 87) - expected : 811856482, actual : -1. |
6 |
Incorrect |
610 ms |
4776 KB |
Wrong Answer: Query(628, 630) - expected : 272199500, actual : -1. |
7 |
Correct |
634 ms |
4776 KB |
Output is correct - number of calls to Secret by Init = 7682, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
675 ms |
4776 KB |
Output is correct - number of calls to Secret by Init = 7682, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
603 ms |
4780 KB |
Output is correct - number of calls to Secret by Init = 7682, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
628 ms |
4780 KB |
Output is correct - number of calls to Secret by Init = 7682, maximum number of calls to Secret by Query = 1 |