이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define ll long long
const int nmax = 3e5 + 5;
const ll oo = 1e18;
const int lg = 18;
const int tx = 2;
const ll base = 31;
#define pii pair<int, int>
#define fi first
#define se second
#define debug(a, n) for(int i = 1; i <= n; ++i) cout << a[i] << ' ';
using namespace std;
int mod[] = {(int)1e9 + 7, (int)1e9 + 9};
int n, cur = 0;
string s;
int pw[2][nmax], h[2][nmax];
int D_odd[nmax];
int D_even[nmax];
void Calc_D_odd() {
int L = 1;
int R = 0;
for(int i = 1 ; i <= n; i++) {
if(i > R) D_odd[i] = 0;
else D_odd[i] = min(R - i, D_odd[L + (R - i)]);
while(i - D_odd[i] - 1 > 0 && i + D_odd[i] + 1 <= n && s[i - D_odd[i] - 1] == s[i + D_odd[i] + 1]) {
D_odd[i]++;
}
if(i + D_odd[i] > R) {
R = i + D_odd[i];
L = i - D_odd[i];
}
}
}
void Calc_D_even() {
int L = 1;
int R = 0;
for(int i = 1 ; i < n; i++) {
int j = i + 1;
if(j > R) D_even[i] = 0;
else D_even[i] = min(R - j + 1, D_even[L + (R - j)]);
while(i - D_even[i] > 0 && j + D_even[i] <= n && s[i - D_even[i]] == s[j + D_even[i]]) {
D_even[i]++;
}
if(i + D_even[i] > R) {
R = i + D_even[i];
L = j - D_even[i];
}
}
}
void Init(){
for(int j = 0; j < tx; ++j) pw[j][0] = 1;
for(int i = 1, j; i <= n; ++i){
for(int j = 0; j < tx; ++j){
pw[j][i] = 1ll * pw[j][i - 1] * base % mod[j];
h[j][i] = (1ll * h[j][i - 1] * base + s[i] - 'a' + 1) % mod[j];
}
}
}
int get(int l, int r, int ix){
return (h[ix][r] - 1ll * h[ix][l - 1] * pw[ix][r - l + 1] + 1ll * mod[ix] * mod[ix]) % mod[ix];
}
map<pii, bool> mp;
map<pii, int> ind;
int cnt[nmax], f[nmax];
int b[nmax];
vector<int> adj[nmax];
void update(int l, int r){
bool ok = 1;
pii x;int sz = 0;
while(l <= r){
x = {get(l, r, 0), get(l, r, 1)};
if(!mp[x]){
ind[x] = ++cur;
b[++sz] = cur;
if(ok){
f[cur]++;
ok = 0;
}
cnt[cur] = r - l + 1;
mp[x] = 1;
}
else{
int id = ind[x];
b[++sz] = id;
if(ok) f[id]++;
break;
}
++l, --r;
}
if(l > r) b[++sz] = 0;
for(int i = 1, x, y; i < sz; ++i){
x = b[i], y = b[i + 1];
adj[y].push_back(x);
}
}
void dfs(int u){
for(auto v : adj[u]){
dfs(v);
f[u] += f[v];
}
}
main(){
ios_base::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
// freopen("code.inp", "r", stdin);
// freopen("code.out", "w", stdout);
cin >> s;
n = s.size(); s = ' ' + s + ' ';
Init();
Calc_D_odd();
Calc_D_even();
for(int i = 1; i <= n; ++i){
update(i - D_odd[i], i + D_odd[i]);
if(i < n) update(i - D_even[i] + 1, i + D_even[i]);
}
dfs(0);
ll ans = 0;
for(int i = 1; i <= cur; ++i){
ans = max(ans, 1ll * f[i] * cnt[i]);
}
cout << ans;
}
/*
*/
컴파일 시 표준 에러 (stderr) 메시지
palindrome.cpp: In function 'void Init()':
palindrome.cpp:59:20: warning: unused variable 'j' [-Wunused-variable]
59 | for(int i = 1, j; i <= n; ++i){
| ^
palindrome.cpp: At global scope:
palindrome.cpp:112:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
112 | main(){
| ^~~~
# | 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... |