#include "secret.h"
#include <bits/stdc++.h>
using namespace std;
int n;
const int maxn = 1001;
int seg[4 * maxn];
int a[maxn];
int ans[maxn][maxn];
void dnc(int l, int r){
if (r <= l) return;
int m = (l + r)/2;
if (l != m) ans[m - 1][m] = Secret(a[m - 1], a[m]);
for (int i = m - 2; i >= l; i--) ans[i][m] = Secret(a[i], ans[i + 1][m]);
if (r != (m + 1)) ans[m + 1][m + 2] = Secret(a[m + 1], a[m + 2]);
for (int i = m + 3; i <= r; i++) ans[m + 1][i] = Secret(ans[m + 1][i - 1], a[i]);
dnc(l, m);
dnc(m + 1, r);
}
void Init(int N, int A[]) {
n = N;
for (int i = 1; i <= n; i++) a[i] = A[i - 1];
for (int i = 0; i < maxn; i++){
for (int j = 0; j < maxn; j++){
ans[i][j] = -1;
if (i == j) ans[i][i] = a[i];
}
}
dnc(1, n);
}
int Query(int l, int r) {
l++;
r++;
if (l == r) return a[l];
if (ans[l][r] != -1) return ans[l][r];
for (int i = l + 1; i < r; i++){
if (ans[l][i] != -1 && ans[i + 1][r] != -1) {
// cout << l << " " << i << " " << i + 1 << " " << r << "\n";
// cout << ans[l][i] << " " << ans[i + 1][r] << "\n";
return Secret(ans[l][i], ans[i + 1][r]);
}
}
assert(false);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
107 ms |
12620 KB |
Execution killed with signal 6 |
2 |
Runtime error |
107 ms |
12588 KB |
Execution killed with signal 6 |
3 |
Runtime error |
111 ms |
12684 KB |
Execution killed with signal 6 |
4 |
Runtime error |
382 ms |
16460 KB |
Execution killed with signal 6 |
5 |
Runtime error |
383 ms |
16536 KB |
Execution killed with signal 6 |
6 |
Runtime error |
382 ms |
16440 KB |
Execution killed with signal 6 |
7 |
Correct |
386 ms |
8232 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
384 ms |
8136 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
388 ms |
8104 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
384 ms |
8204 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |