# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
745146 | ACE_ | 회문 (APIO14_palindrome) | C++14 | 68 ms | 87780 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define int long long
using namespace std;
const int N = 3e5 + 5;
int cnt[N], in[N], last = 0, cur = 1;
struct eer {
int e[26], suf, sz;
} t[N];
vector<int> V[N];
string s;
void add(int i) {
// cout << t[cur].f << " " << t[cur].s << endl;
while(true) {
if(s[i] == s[i - t[last].sz - 1]) {
if(t[last].e[s[i] - 'a']) {
last = t[last].e[s[i] - 'a'];
++cnt[last];
return;
}
t[last].e[s[i] - 'a'] = ++cur;
t[cur].sz = t[last].sz + 2;
cnt[cur] = 1;
break;
}
last = t[last].suf;
}
int id = t[last].suf;
last = cur;
if(id == 0) {
t[cur].suf = 1;
return;
}
while(true) {
if(s[i] == s[i - t[id].sz - 1]) {
t[cur].suf = t[id].e[s[i] - 'a'];
V[cur].push_back(t[id].e[s[i] - 'a']);
++in[t[id].e[s[i] - 'a']];
return;
}
if(id == 0) {
t[cur].suf = 1;
return;
}
id = t[id].suf;
}
}
main(){
cin >> s;
t[0].sz = -1;
t[1].sz = 0;
cur = 1; last = cur;
for(int i = 0; i < s.size(); i++) {
add(i);
}
queue<int> q;
for(int i = 1; i <= cur; i++) {
if(!in[i]) q.push(i);
}
int ans = 0;
while(q.size()) {
int x = q.front();
q.pop();
ans = max(ans, t[x].sz * cnt[x]);
for(int i = 0; i < V[x].size(); i++) {
cnt[V[x][i]] += cnt[x];
--in[V[x][i]];
if(!in[V[x][i]]) q.push(V[x][i]);
}
}
cout << ans;
}
컴파일 시 표준 에러 (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... |