# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
54654 |
2018-07-04T11:20:26 Z |
gs18115 |
Secret (JOI14_secret) |
C++14 |
|
705 ms |
8064 KB |
#include"secret.h"
#include<unordered_map>
using namespace std;
unordered_map<unsigned long long,bool>CHK;
unordered_map<unsigned long long,int>SEC;
int ST[4567];
int N2;
int Secret2(int X,int Y)
{
unsigned long long P;
P=X;
P<<=32;
P|=Y;
if(CHK[P])
return SEC[P];
CHK[P]=true;
return SEC[P]=Secret(X,Y);
}
void P(int I,int N)
{
ST[I]=N;
if(I==1)
return;
if(I&1)
P(I>>1,Secret2(ST[I^1],N));
else
P(I>>1,Secret2(N,ST[I^1]));
}
int Q(int S,int F)
{
if(S==F)
return ST[S];
else if(S==F-1)
return Secret2(ST[S],ST[F]);
int A;
A=Q(S+1>>1,F-1>>1);
if(S&1)
A=Secret2(ST[S],A);
if(!(F&1))
A=Secret2(A,ST[F]);
return A;
}
void Init(int N,int A[])
{
for(N2=1;N2<N;N2<<=1);
for(int i=0;i<N;i++)
P(i+N2,A[i]);
int X;
for(int i=0;i<N2>>1;i++)
X=Q(i+N2,i+N2+(N2>>1));
return;
}
int Query(int L,int R)
{
return Q(L+N2,R+N2);
}
Compilation message
secret.cpp: In function 'int Q(int, int)':
secret.cpp:36:10: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
A=Q(S+1>>1,F-1>>1);
~^~
secret.cpp:36:17: warning: suggest parentheses around '-' inside '>>' [-Wparentheses]
A=Q(S+1>>1,F-1>>1);
~^~
secret.cpp: In function 'void Init(int, int*)':
secret.cpp:48:9: warning: variable 'X' set but not used [-Wunused-but-set-variable]
int X;
^
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
234 ms |
5148 KB |
Output is partially correct - number of calls to Secret by Init = 4390, maximum number of calls to Secret by Query = 9 |
2 |
Partially correct |
231 ms |
5176 KB |
Output is partially correct - number of calls to Secret by Init = 4400, maximum number of calls to Secret by Query = 10 |
3 |
Partially correct |
239 ms |
5276 KB |
Output is partially correct - number of calls to Secret by Init = 4861, maximum number of calls to Secret by Query = 11 |
4 |
Incorrect |
647 ms |
7868 KB |
Output isn't correct - number of calls to Secret by Init = 9319, maximum number of calls to Secret by Query = 11 |
5 |
Incorrect |
685 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9324, maximum number of calls to Secret by Query = 12 |
6 |
Incorrect |
618 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9335, maximum number of calls to Secret by Query = 4 |
7 |
Incorrect |
618 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9336, maximum number of calls to Secret by Query = 11 |
8 |
Incorrect |
705 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9329, maximum number of calls to Secret by Query = 10 |
9 |
Incorrect |
623 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9324, maximum number of calls to Secret by Query = 10 |
10 |
Incorrect |
621 ms |
8064 KB |
Output isn't correct - number of calls to Secret by Init = 9344, maximum number of calls to Secret by Query = 11 |