101414: [AtCoder]ABC141 E - Who Says a Pun?

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $500$ points

Problem Statement

Given is a string $S$ of length $N$.

Find the maximum length of a non-empty string that occurs twice or more in $S$ as contiguous substrings without overlapping.

More formally, find the maximum positive integer $len$ such that there exist integers $l_1$ and $l_2$ ( $1 \leq l_1, l_2 \leq N - len + 1$ ) that satisfy the following:

  • $l_1 + len \leq l_2$

  • $S[l_1+i] = S[l_2+i] (i = 0, 1, ..., len - 1)$

If there is no such integer $len$, print $0$.

Constraints

  • $2 \leq N \leq 5 \times 10^3$
  • $|S| = N$
  • $S$ consists of lowercase English letters.

Input

Input is given from Standard Input in the following format:

$N$
$S$

Output

Print the maximum length of a non-empty string that occurs twice or more in $S$ as contiguous substrings without overlapping. If there is no such non-empty string, print $0$ instead.


Sample Input 1

5
ababa

Sample Output 1

2

The strings satisfying the conditions are: a, b, ab, and ba. The maximum length among them is $2$, which is the answer. Note that aba occurs twice in $S$ as contiguous substrings, but there is no pair of integers $l_1$ and $l_2$ mentioned in the statement such that $l_1 + len \leq l_2$.


Sample Input 2

2
xy

Sample Output 2

0

No non-empty string satisfies the conditions.


Sample Input 3

13
strangeorange

Sample Output 3

5

Input

题意翻译

给你一个字符串,请找到两个**互相不重叠**且**完全相同**的子串,并输出它的最大长度。

加入题单

算法标签: