CF178F2.Representative Sampling

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Smart Beaver from ABBYY has a long history of cooperating with the "Institute of Cytology and Genetics". Recently, the Institute staff challenged the Beaver with a new problem. The problem is as follows.

There is a collection of nn proteins (not necessarily distinct). Each protein is a string consisting of lowercase Latin letters. The problem that the scientists offered to the Beaver is to select a subcollection of size kk from the initial collection of proteins so that the representativity of the selected subset of proteins is maximum possible.

The Smart Beaver from ABBYY did some research and came to the conclusion that the representativity of a collection of proteins can be evaluated by a single number, which is simply calculated. Let's suppose we have a collection a1,...,ak{a_{1},...,a_{k}} consisting of kk strings describing proteins. The representativity of this collection is the following value:

where f(x,y)f(x,y) is the length of the longest common prefix of strings xx and yy ; for example, f(f( "abc", "abd" )=2)=2 , and f(f( "ab", "bcd" )=0)=0 .

Thus, the representativity of collection of proteins { "abc", "abd", "abe" } equals 66 , and the representativity of collection { "aaa", "ba", "ba" } equals 22 .

Having discovered that, the Smart Beaver from ABBYY asked the Cup contestants to write a program that selects, from the given collection of proteins, a subcollection of size kk which has the largest possible value of representativity. Help him to solve this problem!

输入格式

The first input line contains two integers nn and kk ( 1<=k<=n1<=k<=n ), separated by a single space. The following nn lines contain the descriptions of proteins, one per line. Each protein is a non-empty string of no more than 500500 characters consisting of only lowercase Latin letters (a ...... z). Some of the strings may be equal.

The input limitations for getting 20 points are:

  • 1<=n<=201<=n<=20

The input limitations for getting 50 points are:

  • 1<=n<=1001<=n<=100

The input limitations for getting 100 points are:

  • 1<=n<=20001<=n<=2000

输出格式

Print a single number denoting the largest possible value of representativity that a subcollection of size kk of the given collection of proteins can have.

输入输出样例

  • 输入#1

    3 2
    aba
    bzd
    abq
    

    输出#1

    2
    
  • 输入#2

    4 3
    eee
    rrr
    ttt
    qqq
    

    输出#2

    0
    
  • 输入#3

    4 3
    aaa
    abba
    abbc
    abbd
    

    输出#3

    9
    
首页