#include "secret.h"
#include <vector>
using namespace std;
template<class T> struct offlineDQ {
static const int SZ = (1 << 10);
int n;
T stor[SZ][32-__builtin_clz(SZ)], id = 1;
vector<T> a;
T comb (T a, T b) { return (a == -1 ? b : (b == 1 ? a : Secret(a, b))); } // associative operation
void fill(int l, int r, int ind) {
if (ind < 0) return;
int m = (l+r)/2;
T prod = a[m - 1];
if(l <= m - 1) stor[m - 1][ind] = prod;
for(int i = m - 2; i >= l; i--) stor[i][ind] = prod = comb(a[i],prod);
prod = a[m];
if(m < r) stor[m][ind] = prod;
for(int i = m + 1; i < r; i++) stor[i][ind] = prod = comb(prod,a[i]);
fill(l,m,ind-1); fill(m,r,ind-1);
}
void init() {
n = 1; while ((1<<n) < (int)a.size()) ++n;
while(a.size() < (1 << n)) a.push_back(-1);
fill(0,(1<<n),n-1);
}
T query(int l, int r) {
if (l == r) return a[l];
int t = 31-__builtin_clz(r^l);
return comb(stor[l][t],stor[r][t]);
}
};
offlineDQ<int> odq;
void Init(int N, int A[]) {
odq.a.resize(N);
for(int i = 0; i < N; i++) odq.a[i] = A[i];
odq.init();
}
int Query(int L, int R) {
return odq.query(L, R);
}
Compilation message
secret.cpp: In instantiation of 'void offlineDQ<T>::init() [with T = int]':
secret.cpp:39:12: required from here
secret.cpp:24:20: warning: comparison of integer expressions of different signedness: 'std::vector<int, std::allocator<int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
24 | while(a.size() < (1 << n)) a.push_back(-1);
| ~~~~~~~~~^~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
108 ms |
2372 KB |
Wrong Answer [1] |
2 |
Correct |
121 ms |
2376 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
3 |
Incorrect |
109 ms |
2324 KB |
Wrong Answer [1] |
4 |
Incorrect |
405 ms |
4320 KB |
Wrong Answer [1] |
5 |
Incorrect |
411 ms |
4292 KB |
Wrong Answer [1] |
6 |
Incorrect |
408 ms |
4232 KB |
Wrong Answer [1] |
7 |
Incorrect |
410 ms |
4224 KB |
Wrong Answer [1] |
8 |
Incorrect |
409 ms |
4300 KB |
Wrong Answer [1] |
9 |
Incorrect |
407 ms |
4248 KB |
Wrong Answer [1] |
10 |
Incorrect |
410 ms |
4320 KB |
Wrong Answer [1] |