#include "brperm.h"
#include <bits/stdc++.h>
#define all(x) (x.begin(),x.end())
#define ll long long
const ll PRIME = 37LL;
const ll MOD = 1e9+7;
const int LOG = 20;
const int MAXN = 5e5+10;
using namespace std;
int dp[LOG][MAXN];
ll invPot[LOG][MAXN], sv[LOG][MAXN], pot2[LOG][LOG];
int token;
int N;
void init(int n, const char s[]) {
N = n;
for(int i = 0; i < n; i++)
dp[0][i] = s[i]-'a'+1;
token = 0;
while((1<<token) <= n)
token++;
token--;
pot2[0][0] = PRIME;
for(int i = 1; i <= token; i++)
pot2[i][0] = (pot2[i-1][0]*pot2[i-1][0])%MOD;
for(int i = 0; i <= token; i++){
for(int j = 1; j < LOG; j++)
pot2[i][j] = (pot2[i][j-1] * pot2[i][0]) % MOD;
}
for(int i = 0; i < LOG; i++){
for(int j= n-1; j >= 0; j--){
sv[i][j] = sv[i][j+1]*pot2[i][0];
sv[i][j] %= MOD;
sv[i][j] += s[j]-'a'+1;
}
}
for(int i = 1; i <= token; i++)
for(int j= 0; j+(1<<i)-1 < N; j++){
dp[i][j] = dp[i-1][j];
ll toSum = dp[i-1][j+(1<<(i-1))]*pot2[token-i][0];
toSum %= MOD;
dp[i][j] += toSum;
if(dp[i][j] >= MOD)
dp[i][j] -= MOD;
}
}
int query(int i, int k) {
int l = i, r = (1<<k)+l-1;
return 0;
ll hashSeq = sv[token-k][l]-(sv[token-k][r+1]*pot2[token-k][r-l])%MOD;
hashSeq %= MOD;
hashSeq += MOD;
hashSeq %= MOD;
return hashSeq == dp[k][l];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
284 ms |
116008 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
724 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |