# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1094814 |
2024-09-30T15:47:35 Z |
alexdd |
Brperm (RMI20_brperm) |
C++17 |
|
3000 ms |
154352 KB |
#include "brperm.h"
#include <bits/stdc++.h>
using namespace std;
int n;
const long long MOD = 1e9+9;
long long p[530005];
int put(int a, int exp)
{
if(exp==0)
return 1;
if(exp%2==0)
return put(a*a%MOD,exp/2);
else
return put(a*a%MOD,exp/2)*a%MOD;
}
int rev(int x, int k)
{
int aux=0;
for(int i=0;i<k;i++)
if(((1<<i)&x))
aux += (1<<(k-i-1));
return aux;
}
long long hsh[500005][19];
long long normal[500005][19];
void init(int copn, const char s[])
{
n=copn;
p[0]=1;
p[1]=31;
for(int i=2;i<=(1<<19);i++)
p[i] = (p[i-1]*p[1])%MOD;
for(int i=0;i<n;i++)
{
hsh[i][0] = normal[i][0] = s[i];
}
for(int k=1;k<19;k++)
{
for(int i=0;i+(1<<k)-1<n;i++)
{
hsh[i][k] = (hsh[i][k-1] + hsh[i+(1<<(k-1))][k-1]*p[(1<<(18-k))])%MOD;
for(int j=0;j<(1<<k);j++)
{
normal[i][k] = (normal[i][k] + s[i+j]*p[j*(1<<(18-k))])%MOD;
}
}
}
}
int query(int i, int k)
{
if(i+(1<<k)-1 >= n)
return 0;
return hsh[i][k] == normal[i][k];
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
4696 KB |
Output is correct |
2 |
Correct |
7 ms |
4700 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
4696 KB |
Output is correct |
2 |
Correct |
7 ms |
4700 KB |
Output is correct |
3 |
Execution timed out |
3076 ms |
34552 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
3067 ms |
154352 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
7 ms |
4696 KB |
Output is correct |
2 |
Correct |
7 ms |
4700 KB |
Output is correct |
3 |
Execution timed out |
3076 ms |
34552 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |