# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
140065 | shamimjucse | Palindromes (APIO14_palindrome) | C++14 | 70 ms | 36408 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int mx = 300005;
int tr[mx][26], node;
int len[mx], link[mx],suff;
string s; /// 1-indexed
int cnt[mx],occ[mx];
inline void Insert(int p)
{
while(s[p - len[suff] - 1] != s[p])
suff = link[suff];
int x = link[suff], c = s[p] - 'a';
while(s[p - len[x] - 1] != s[p])
x = link[x];
if(!tr[suff][c])
{
tr[suff][c] = ++node;
len[node] = len[suff] + 2;
link[node] = (len[node] == 1) ? 2 : tr[x][c];
cnt[node]+=1 + cnt[link[node]];
}
suff = tr[suff][c];
occ[suff]++;
}
void initTree()
{
node = 2, suff = 2;
len[1] = -1, link[1] = 1;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |