Little Adrian is a fan of rhyme. He believes that two words rhyme if and only if their longest common suffix is as long as the longer of the two words, or shorter than the longer word by . In other words, and rhyme if and only if it holds .
One day, while reading a collection of short stories, he decided to compose the longest possible sequence of words such that each two consecutive words rhyme. Each word from the sequence can appear only once.
Adrian has grown tired of this task, so he decided to go back to reading, and is asking you to solve this task instead of him.
Input Specification
The first line of input contains the integer .
Each of the following lines contains one word consisting of lowercase letters of the English alphabet. All words are mutually distinct, and their total length is at most .
Output Specification
You must output the length of the longest sequence.
Scoring
In test cases worth of points, it will hold .
Sample Input 1
4
honi
toni
oni
ovi
Sample Output 1
3
Sample Input 2
5
ask
psk
krafna
sk
k
Sample Output 2
4
Explanation for Sample Output 2
The only possible sequence is ask-psk-sk-k
.
Sample Input 3
5
pas
kompas
stas
s
nemarime
Sample Output 3
1
Explanation for Sample Output 3
No two words rhyme.
Comments