# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
101359 | ZwariowanyMarcin | 회문 (APIO14_palindrome) | C++14 | 382 ms | 11584 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define ss(v) (int)v.size()
#define fi first
#define se second
using namespace std;
const int nax = 2 * 300100;
char c[nax];
int kmr[nax];
pair < pair < int, int > , int > help[nax];
int gdzie[nax];
int lcp[nax];
stack < pair < int, int > > s;
int lewo[nax], prawo[nax];
int main()
{
scanf("%s", c + 1);
int n = strlen(c + 1);
ll ans = n;
for(int i = 1; n >= i; ++i)
kmr[i] = c[i];
for(int j = 1; 1000 > j; ++j)
{
for(int i = 1; n >= i; ++i)
help[i] = {{kmr[i], kmr[i + (1 << (j - 1))]}, i};
sort(help + 1, help + n + 1);
int cnt = 1;
for(int i = 1; n >= i; ++i)
{
kmr[help[i].se] = cnt;
if(help[i].fi != help[i + 1].fi)
cnt++;
}
if(cnt == n + 1)
break;
}
for(int i = 1; n >= i; ++i)
gdzie[kmr[i]] = i;
int k = 0;
for(int i = 1; n >= i; ++i)
{
while(c[i + k] == c[gdzie[kmr[i] + 1] + k])
k++;
lcp[kmr[i]] = k;
if(k)
--k;
}
for(int i = 1; n >= i; ++i)
lewo[i] = prawo[i] = i;
for(int i = 1; n >= i; ++i)
{
while(!s.empty() && s.top().first > lcp[i])
{
prawo[s.top().second] = i;
s.pop();
}
s.push({lcp[i], i});
}
while(!s.empty())
s.pop();
for(int i = n; i >= 1; --i)
{
while(!s.empty() && s.top().first > lcp[i])
{
lewo[s.top().second] = i + 1;
s.pop();
}
s.push({lcp[i], i});
}
while(!s.empty())
{
lewo[s.top().se] = 1;
s.pop();
}
for(int i = 1; n >= i; ++i)
ans = max(ans, (ll)(lcp[i] * (prawo[i] - lewo[i] + 1)));
printf("%lld", 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... |