Submission #399894

#TimeUsernameProblemLanguageResultExecution timeMemory
399894BERNARB01Palindromes (APIO14_palindrome)C++17
100 / 100
33 ms38464 KiB
#include <bits/stdc++.h>

using namespace std;

template<const int A>
class eertree {
private:
	int n, id, cr;
	vector<array<int, A>> T;
	vector<int> P, L, C;
	int Pr(const string& s, int i, int v) {
		while (i - L[v] - 1 < 0 || s[i - L[v] - 1] != s[i]) {
			v = P[v];
		}
		return v;
	}
	void add(const string& s, int i) {
		int ch = s[i] - 'a';
		cr = Pr(s, i, cr);
		if (T[cr][ch] == 0) {
			L[id] = 2 + L[cr];
			P[id] = T[Pr(s, i, P[cr])][ch];
			T[cr][ch] = id++;
		}
		cr = T[cr][ch];
		C[cr]++;
	}
public:
	eertree() {};
	eertree(const string& s) {
		n = s.length();
		T.assign(n + 2, {});
		P.assign(n + 2, 0);
		L.assign(n + 2, 0);
		C.assign(n + 2, 0);
		P[0] = 1;
		L[1] = -1;
		id = 2;
		cr = 0;
		for (int i = 0; i < n; i++) {
			add(s, i);
		}
	}
	long long solve() {
		vector<int> inDeg(n + 2, 0);
		for (int i = 2; i < n + 2; i++) {
			inDeg[P[i]]++;
		}
		vector<int> que;
		for (int i = 2; i < n + 2; i++) {
			if (inDeg[i] == 0) {
				que.push_back(i);
			}
		}
		for (int b = 0; b < (int) que.size(); b++) {
			int u = que[b];
			int v = P[u];
			if (v < 2) {
				continue;
			}
			C[v] += C[u];
			inDeg[v]--;
			if (inDeg[v] == 0) {
				que.push_back(v);
			}
		}
		long long res = 0;
		for (int i = 2; i < n + 2; i++) {
			res = max(res, C[i] * 1LL * L[i]);
		}
		return res;
	}
};

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	string s;
	cin >> s;
	eertree<26> pals(s);
	cout << pals.solve() << '\n';
	return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...