# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
52547 |
2018-06-26T07:03:17 Z |
노영훈(#1364) |
Secret (JOI14_secret) |
C++11 |
|
642 ms |
8588 KB |
#include "secret.h"
#include <bits/stdc++.h>
using namespace std;
const int MX=1001, B=32;
int n, A[MX];
vector<int> P;
// p <= x < q, p < y <= q
int D[MX][MX]; // [x, y)
int sz;
void _fill(){
for(int i=0; i<sz-1; i++){
int p=P[i], q=P[i+1];
for(int x=p; x<q; x++){
D[x][x+1]=A[x];
for(int y=x+2; y<=q; y++)
D[x][y]=Secret(D[x][y-1], A[y-1]);
}
}
for(int i=0; i<sz; i++){
for(int j=i+2; j<sz; j++){
int p=P[i], q=P[j];
D[p][q]=Secret(D[p][q-B], D[q-B][q]);
}
}
/*
cout<<"\nD: \n";
for(int i=0; i<n; i++){
for(int j=1; j<=n; j++){
cout<<D[i][j]<<' ';
}
cout<<'\n';
}
*/
}
void Init(int N, int _A[]) {
n=N;
for(int i=0; i<n; i++) A[i]=_A[i];
for(int p=0; p<n; p+=B) P.push_back(p);
P.push_back(n);
sz=P.size();
for(int i=0; i<n; i++)
for(int j=0; j<=n; j++)
D[i][j]=-1;
_fill();
}
int Query(int L, int R) {
int l=L, r=R+1;
int a=-1,b=-1;
for(int i=0; i<sz; i++) if(l<P[i]){ a=P[i]; break; }
for(int i=sz-1; i>=0; i--) if(P[i]<r){ b=P[i]; break; }
if(b<a) return D[l][r];
if(a==b) return Secret(D[l][a], D[b][r]);
else return Secret(Secret(D[l][a], D[a][b]), D[b][r]);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
157 ms |
4432 KB |
Wrong Answer [1] |
2 |
Incorrect |
178 ms |
4432 KB |
Output isn't correct - number of calls to Secret by Init = 8056, maximum number of calls to Secret by Query = 2 |
3 |
Incorrect |
160 ms |
4684 KB |
Wrong Answer [1] |
4 |
Incorrect |
579 ms |
8296 KB |
Wrong Answer [1] |
5 |
Incorrect |
572 ms |
8432 KB |
Wrong Answer [1] |
6 |
Incorrect |
584 ms |
8456 KB |
Wrong Answer [1] |
7 |
Incorrect |
574 ms |
8456 KB |
Wrong Answer [1] |
8 |
Incorrect |
642 ms |
8588 KB |
Wrong Answer [1] |
9 |
Incorrect |
626 ms |
8588 KB |
Wrong Answer [1] |
10 |
Incorrect |
582 ms |
8588 KB |
Wrong Answer [1] |