#include <bits/stdc++.h>
#include "secret.h"
using namespace std;
constexpr int mxN = 1005;
int N, A[mxN], pref[mxN][mxN];
void precompute(int l, int r) {
if (l == r) return;
int mid = l + r >> 1;
pref[mid][mid] = A[mid];
pref[mid+1][mid+1] = A[mid+1];
for (int i = mid - 1; i >= l; i--) {
pref[mid][i] = Secret(pref[mid][i+1], A[i]);
}
for (int i = mid + 2; i <= r; i++) {
pref[mid+1][i] = Secret(pref[mid+1][i], A[i]);
}
precompute(l, mid);
precompute(mid + 1, r);
}
void Init(int n, int* a) {
N = n;
for (int i = 0; i < N; i++) {
A[i] = a[i];
}
precompute(0, N - 1);
}
int Query(int l, int r) {
int lo = 0, hi = N - 1;
while (lo < hi) {
int mid = lo + hi >> 1;
if (l <= mid && r > mid) {
return Secret(pref[mid][l], pref[mid+1][r]);
}
if (r == mid) {
return pref[mid][l];
}
if (mid < l) {
lo = mid + 1;
} else {
hi = mid;
}
}
}
Compilation message
secret.cpp: In function 'void precompute(int, int)':
secret.cpp:8:14: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
8 | int mid = l + r >> 1;
| ~~^~~
secret.cpp: In function 'int Query(int, int)':
secret.cpp:30:16: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
30 | int mid = lo + hi >> 1;
| ~~~^~~~
secret.cpp:43:1: warning: control reaches end of non-void function [-Wreturn-type]
43 | }
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
122 ms |
4348 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 1470922. |
2 |
Incorrect |
112 ms |
4444 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 875604137. |
3 |
Incorrect |
114 ms |
4452 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 414658608. |
4 |
Incorrect |
434 ms |
8288 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 581599327. |
5 |
Incorrect |
423 ms |
8204 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 865768728. |
6 |
Incorrect |
438 ms |
8308 KB |
Wrong Answer: Query(738, 741) - expected : 983692994, actual : 805323730. |
7 |
Incorrect |
433 ms |
8292 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 218866779. |
8 |
Incorrect |
439 ms |
8184 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 745643208. |
9 |
Incorrect |
453 ms |
8292 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 834678660. |
10 |
Incorrect |
427 ms |
8268 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 537520194. |