# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
988125 |
2024-05-24T05:41:47 Z |
icyalmond |
Secret (JOI14_secret) |
C++17 |
|
362 ms |
4660 KB |
#include "secret.h"
int n, pref[1005][15], 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(a[i], pref[i + 1][h]);
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[])
{
n = N;
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]));
// int l = 1, r = n, h = 0;
// while (l < r)
// {
// int m = l + r >> 1;
// if (L + 1 <= m && m + 1 <= R + 1) return(Secret(pref[L + 1][h], pref[R + 1][h]));
// else if (L + 1 > m)
// {
// l = m + 1;
// h++;
// }
// else if (m + 1 > R + 1)
// {
// r = m;
// h++;
// }
// }
}
}
//coded by icyalmond
Compilation message
secret.cpp: In function 'void build(int, int, int)':
secret.cpp:8:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
8 | int m = l + r >> 1;
| ~~^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
103 ms |
3504 KB |
Output is correct - number of calls to Secret by Init = 3578, maximum number of calls to Secret by Query = 1 |
2 |
Correct |
102 ms |
3572 KB |
Output is correct - number of calls to Secret by Init = 3586, maximum number of calls to Secret by Query = 1 |
3 |
Correct |
104 ms |
3924 KB |
Output is correct - number of calls to Secret by Init = 3595, maximum number of calls to Secret by Query = 1 |
4 |
Correct |
354 ms |
4436 KB |
Output is correct - number of calls to Secret by Init = 7969, maximum number of calls to Secret by Query = 1 |
5 |
Correct |
359 ms |
4432 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
6 |
Correct |
360 ms |
4432 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
7 |
Correct |
356 ms |
4448 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
8 |
Correct |
362 ms |
4424 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
9 |
Correct |
357 ms |
4660 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |
10 |
Correct |
360 ms |
4432 KB |
Output is correct - number of calls to Secret by Init = 7978, maximum number of calls to Secret by Query = 1 |