Submission #988085

# Submission time Handle Problem Language Result Execution time Memory
988085 2024-05-24T04:25:47 Z icyalmond Secret (JOI14_secret) C++14
0 / 100
360 ms 13140 KB
#include "secret.h"

int pref[1005][15], suf[1005][15], mask[1005];

void build(int l, int r, int h, int A[])
{
    int m = l + 1 >> 1;
    suf[m][h] = A[m - 1];
    for (int i = m - 1; i >= l; i--) suf[i][h] = Secret(suf[i + 1][h], A[i - 1]);
    pref[m + 1][h] = A[m];
    for (int i = m + 2; i <= r; i++) pref[i][h] = Secret(pref[i - 1][h], A[i - 1]);
    for (int i = m + 1; i <= r; i++) mask[i] |= 1 << h;
    if (l != m) build(l, m, h + 1, A);
    if (m + 1 != r) build(m + 1, r, h + 1, A);
}

void Init(int N, int A[])
{
    build(1, N, 0, A);
}

int Query(int L, int R)
{
    L++;
    R++;
    if (L == R) return(suf[L][mask[L] ^ mask[R]]);
    else return(Secret(suf[L][mask[L] ^ mask[R]], pref[R][mask[L] ^ mask[R]]));
}

//coded by icyalmond

Compilation message

secret.cpp: In function 'void build(int, int, int, int*)':
secret.cpp:7:15: warning: suggest parentheses around '+' inside '>>' [-Wparentheses]
    7 |     int m = l + 1 >> 1;
      |             ~~^~~
# Verdict Execution time Memory Grader output
1 Runtime error 103 ms 9044 KB Execution killed with signal 11
2 Runtime error 101 ms 8788 KB Execution killed with signal 11
3 Runtime error 98 ms 8788 KB Execution killed with signal 11
4 Runtime error 360 ms 13140 KB Execution killed with signal 11
5 Runtime error 353 ms 12624 KB Execution killed with signal 11
6 Runtime error 354 ms 12860 KB Execution killed with signal 11
7 Runtime error 353 ms 12628 KB Execution killed with signal 11
8 Runtime error 357 ms 12640 KB Execution killed with signal 11
9 Runtime error 357 ms 12624 KB Execution killed with signal 11
10 Runtime error 357 ms 12836 KB Execution killed with signal 11