# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
988120 |
2024-05-24T05:34:48 Z |
icyalmond |
Secret (JOI14_secret) |
C++17 |
|
382 ms |
5300 KB |
#include "secret.h"
#include <bits/stdc++.h>
using namespace std;
long long pref[1005][105], a[1005], mask[1005];
void build(int l, int r, int h)
{
if (l == r) return;
int m = l + r >> 1;
pref[m][h] = a[m];
for (int i = m - 1; i >= l; i--) pref[i][h] = Secret(pref[i + 1][h], a[i]);
pref[m + 1][h] = a[m + 1];
for (int i = m + 2; i <= r; i++) pref[i][h] = Secret(pref[i - 1][h], a[i]);
for (int i = m + 1; i <= r; i++) mask[i] |= 1 << h;
if (l != m) build(l, m, h + 1);
if (m + 1 != r) build(m + 1, r, h + 1);
}
void Init(int N, int A[])
{
for (int i = 1; i <= N; i++) a[i] = A[i - 1];
build(1, N, 0);
}
int Query(int L, int R)
{
if (L == R) return(a[L + 1]);
else
{
int h = __builtin_ctz(mask[L + 1] ^ mask[R + 1]);
return(Secret(pref[L + 1][h], pref[R + 1][h]));
}
}
//coded by icyalmond
Compilation message
secret.cpp: In function 'void build(int, int, int)':
secret.cpp:10:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
10 | int m = l + r >> 1;
| ~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
102 ms |
4708 KB |
Wrong Answer: Query(222, 254) - expected : 34031541, actual : 268854015. |
2 |
Incorrect |
101 ms |
4700 KB |
Wrong Answer: Query(60, 375) - expected : 669221184, actual : 311474560. |
3 |
Incorrect |
101 ms |
4432 KB |
Wrong Answer: Query(211, 401) - expected : 674373968, actual : 353554500. |
4 |
Incorrect |
381 ms |
5300 KB |
Wrong Answer: Query(90, 497) - expected : 397934825, actual : 343081568. |
5 |
Incorrect |
374 ms |
5200 KB |
Wrong Answer: Query(587, 915) - expected : 752404486, actual : 957013316. |
6 |
Incorrect |
374 ms |
5260 KB |
Wrong Answer: Query(200, 208) - expected : 277813445, actual : 154975445. |
7 |
Incorrect |
382 ms |
5200 KB |
Wrong Answer: Query(84, 976) - expected : 742463504, actual : 675449873. |
8 |
Incorrect |
374 ms |
5080 KB |
Wrong Answer: Query(58, 987) - expected : 20022464, actual : 273091792. |
9 |
Incorrect |
381 ms |
5276 KB |
Wrong Answer: Query(33, 967) - expected : 676869696, actual : 827853577. |
10 |
Incorrect |
374 ms |
5204 KB |
Wrong Answer: Query(116, 961) - expected : 68487362, actual : 337854787. |