# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
32153 | minimario | 회문 (APIO14_palindrome) | C++14 | 29 ms | 53184 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX = 300005;
struct node {
int len;
int next[26];
int suff;
int ct;
};
node t[MAX];
int i = 0;
int ans = 0;
void roots() {
t[0].len = -1; t[0].suff = 0;
t[1].len = 0; t[1].suff = 0;
}
int ct = 2;
int maxsuff = 1;
string s;
void add(int pos) {
int j = maxsuff;
int c = s[pos] - 'a'; // the character
while (s[pos-t[j].len-1] != s[pos]) {
j = t[j].suff;
}
if (t[j].next[c] == 0) {
t[j].next[c] = ct;
t[ct].len = t[j].len + 2;
ct++;
}
maxsuff = t[j].next[c];
if (j == 0) {
t[maxsuff].suff = 1;
}
else {
j = t[j].suff;
while (s[pos-t[j].len-1] != s[pos]) {
j = t[j].suff;
}
if (t[j].next[c] == 0) {
t[j].next[c] = ct;
t[ct].len = t[j].len + 2;
ct++;
}
t[maxsuff].suff = t[j].next[c];
}
t[maxsuff].ct++;
}
bool v[MAX];
vector<int> g[MAX];
void create() {
for (int i=2; i<=MAX; i++) {
if (t[i].suff > 1) {
g[t[i].suff].push_back(i);
}
}
}
void dfs(int u) {
v[u] = true;
for (int i : g[u]) {
dfs(i);
t[u].ct += t[i].ct;
}
}
int main() {
//freopen("a.in", "r", stdin);
//freopen("a.out", "w", stdout);
ios::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
cin >> s;
s = " " + s;
roots();
for (int i=1; i<s.length(); i++) {
add(i);
}
v[0] = v[1] = true;
create();
for (int i=2; i<=MAX; i++) {
if (!v[i]) { dfs(i); }
}
long long maxi = 0;
for (int i=2; i<MAX; i++) {
maxi = max(maxi, (long long)t[i].len * (long long)t[i].ct);
}
cout << maxi << endl;
}
컴파일 시 표준 에러 (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... |