# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
48303 | nickyrio | Palindromes (APIO14_palindrome) | C++17 | 104 ms | 71568 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>
using namespace std;
#define N 350000
struct Node {
int cnt, len, sufflink, next[26];
}tree[N];
vector<int> e[N];
struct PalindromicTree {
string s;
int currNode, ptr;
long long ans;
PalindromicTree(string s): s(s) {
currNode = ptr = 1;
for(int i = 0; i<N; i++) {
tree[i].len = tree[i].cnt = tree[i].sufflink = 0;
for (int j = 0; j<26; j++) tree[i].next[j] = 0;
}
tree[0].len = -1; tree[0].sufflink = 0;
for (int i = 0; i<(int) s.size(); i++) insert(i);
}
long long getMaxAns() {
ans = 0;
dfs(1);
return ans;
}
# | 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... |