# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
33799 | sinhriv | 회문 (APIO14_palindrome) | C++14 | 9 ms | 41984 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct eerTree{
static const int Alpabet = 30;
static const int N = 3e5;
struct Node{
int nxt[Alpabet];
int suffix;
int len;
int value;
};
int cnt;
int current;
Node tree[N];
string source;
void addLetter(int pos){
int u = current;
int c = source[pos] - 'a';
while(true){
int len = tree[u].len;
if(pos - len - 1 >= 0 && source[pos - len - 1] == source[pos]){
break;
}
u = tree[u].suffix;
}
if(tree[u].nxt[c] != 0){
++tree[tree[u].nxt[c]].value;
current = tree[u].nxt[c];
return;
}
tree[u].nxt[c] = ++cnt;
tree[cnt].value = 1;
tree[cnt].len = tree[u].len + 2;
if(tree[cnt].len == 1){
tree[cnt].suffix = 2;
current = cnt;
return;
}
while(true){
u = tree[u].suffix;
int len = tree[u].len;
if(pos - len - 1 >= 0 && source[pos - len - 1] == source[pos]){
tree[cnt].suffix = tree[u].nxt[c];
break;
}
}
current = cnt;
}
void Init(string x){
cnt = current = 2;
source = x;
tree[1].len = -1;
tree[1].suffix = 1;
tree[2].len = 0;
tree[2].suffix = 1;
for(int i = 0; i < source.size(); ++i){
addLetter(i);
}
}
long long calc(){
long long ans = 0;
for(int i = cnt; i >= 1; --i){
ans = max(ans, 1LL * tree[i].value * tree[i].len);
tree[tree[i].suffix].value += tree[i].value;
}
return ans;
}
}f;
int main(){
if(fopen("1.inp", "r")){
freopen("1.inp", "r", stdin);
}
ios_base::sync_with_stdio(false);
cin.tie(NULL);
string s;
cin >> s;
f.Init(s);
cout << f.calc();
return 0;
}
컴파일 시 표준 에러 (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... |