시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB85383546.053%

문제

Byteasar breeds hamsters. Each hamster has a unique name, consisting of lower case letters of the English alphabet. The hamsters have a vast and comfortable cage. Byteasar intends to place a display under the cage to visualize the names of his hamsters. This display is simply a sequence of letters, each of which can be either lit or not independently. Only one name will be displayed simultaneously. The lit letters forming the name have to stand next to each other, i.e., form a contiguous subsequence.

Byteasar wants to be able to display the names of the hamsters on at least m different positions. However, he allows displaying the same name on multiple different positions, and does not require to be able to display each and every hamster's name. Note that the occurrences of the names on the display can overlap. You can assume that no hamster's name occurs (as a contiguous fragment) in any other hamster's name. Bytesar asks your help in determining the minimum number of letters the display has to have.

In other words, you are to determine the minimum length of a string (consisting of non-capital letters of the English alphabet) that has at least m total occurrences of the hamsters' names (counting multiplicities). (We say that a string s occurs in the string t if s forms a contiguous fragment of t.)

입력

The first line of the standard input holds two integers n and m (1 ≤ n ≤ 200, 1 ≤ m ≤ 109), separated by a single space, that denote the number of Byteasar's hamsters and the minimum number of occurrences of the hamsters' names on the display. Each of the following n lines contains a non-empty string of non-capital letters of the English alphabet that is the hamster's name. The total length of all names does not exceed 100,000 letters.

출력

The first and only line of the standard output should hold a single integer - the minimum number of letters the display has to have.

예제 입력 1

4 5
monika
tomek
szymon
bernard

예제 출력 1

23

힌트

The shortest display could be, for example: szymonikatomekszymonika. It has 5 occurrences of the hamsters' names in total: szymon and monika occur twice each, tomek just once, and bernard does not occur in it at all.