#include "brperm.h"
#include <algorithm>
#include <iostream>
#include <numeric>
#include <cassert>
#include <vector>
typedef long long llong;
const int MAXN = 500000 + 10;
const int MOD = 251;
const int MAXLOG = 19;
int n;
char s1[MAXN];
int base[3 * MAXN];
int encode(int logLen, int logH)
{
int res = 0;
for (int i = 0 ; i < logLen ; ++i)
{
res += MAXLOG - i;
}
return res + logH;
}
struct Sparse
{
int normalHash[MAXN][MAXLOG];
char danceHash[MAXN][MAXLOG * (MAXLOG + 1) / 2];
void build()
{
for (int i = 0 ; i < n ; ++i)
{
normalHash[i][0] = s1[i] - 'a' + 1;
for (int lgH = 0 ; lgH < MAXLOG ; ++lgH)
{
danceHash[i][encode(0, lgH)] = s1[i] - 'a' + 1;
}
}
for (int lgLen = 1 ; (1 << lgLen) <= n ; ++lgLen)
{
for (int i = 0 ; i + (1 << lgLen) <= n ; ++i)
{
normalHash[i][lgLen] = (1LL * base[(1 << (lgLen - 1))] * normalHash[i][(lgLen - 1)] + 1LL * normalHash[i + (1 << (lgLen - 1))][(lgLen - 1)]) % MOD;
for (int lgH = 0 ; lgH < MAXLOG - lgLen ; ++lgH)
{
danceHash[i][encode(lgLen, lgH)] = (1LL * base[1 << lgH] * danceHash[i][encode(lgLen - 1, lgH + 1)] + 1LL * danceHash[i + (1 << (lgLen - 1))][encode(lgLen - 1, lgH + 1)]) % MOD;
}
}
}
}
int query(int idx, int log)
{
if ((idx + (1 << log)) > n) return 0;
return normalHash[idx][log] == danceHash[idx][encode(log, 0)];
}
};
Sparse sparse;
void init(int N, const char S[])
{
n = N;
for (int i = 0 ; i < n ; ++i)
{
s1[i] = S[i];
}
base[0] = 1;
for (int i = 1 ; i < 3 * MAXN ; ++i)
{
base[i] = (27LL * base[i - 1]) % MOD;
}
sparse.build();
}
int query(int idx, int log)
{
return sparse.query(idx, log);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
9048 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
9048 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1329 ms |
140368 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
9048 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |