#include "secret.h"
#include <bits/stdc++.h>
using namespace std;
int bollocks[1000][1000], divider[129], arr[1000], en;
void solve(int x, int y) {
int mid = (x + y) / 2;
bollocks[mid][mid] = arr[mid]; bollocks[mid + 1][mid + 1] = arr[mid + 1];
for (int i = mid - 1; i >= x; i--) {
bollocks[i][mid] = Secret(arr[i], bollocks[i + 1][mid]);
}
for (int i = mid + 2; i <= y; i++) {
bollocks[mid + 1][i] = Secret(bollocks[mid + 1][i - 1], arr[i]);
}
if (x < mid) {
solve(x, mid);
}
if (y > mid + 1) {
solve(mid + 1, y);
}
}
void Init(int n, int a[]) {
en = n;
for (int i=0;i<n;i++) {
arr[i] = a[i];
}
solve(0, n - 1);
}
int Query(int L, int R) {
if (L == R) {
return arr[L];
}
int top = en - 1, bottom = 0, mid;
while (true) {
mid = (top + bottom) / 2;
if (L > mid + 1) {
bottom = mid + 1;
} else if (R < mid) {
top = mid;
} else {
break;
}
}
if (R == mid) {
return bollocks[L][R];
} else if (L == mid + 1) {
return bollocks[L][R];
} else {
return Secret(bollocks[L][mid], bollocks[mid + 1][R]);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
85 ms |
4440 KB |
Output is correct - number of calls to Secret by Init = 3578, maximum number of calls to Secret by Query = 1 |
2 |
Correct |
86 ms |
4348 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
3 |
Correct |
87 ms |
4304 KB |
Output is correct - number of calls to Secret by Init = 3595, maximum number of calls to Secret by Query = 1 |
4 |
Correct |
323 ms |
8332 KB |
Output is correct - number of calls to Secret by Init = 7969, maximum number of calls to Secret by Query = 1 |
5 |
Correct |
312 ms |
8272 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
6 |
Correct |
312 ms |
8184 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
7 |
Correct |
317 ms |
8272 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
313 ms |
8276 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
310 ms |
8168 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
320 ms |
8328 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |