Pro.ID21427 TitleEdit Step Ladders Title链接http://10.20.2.8/oj/exercise/problem?problem_id=21427 AC15 Submit47 Ratio31.91% 时间&空间限制描述An edit step is a transformation from one word x to another word y such that x and y are words in the dictionary, and x can be transformed to y by adding, deleting, or changing one letter. So the transformation from dig to dog or from dog to do are both edit steps. An edit step ladder is a lexicographically ordered sequence of words w1, w2, ... wn such that the transformation from wi to wi+1 is an edit step for all i from 1 to n-1. 输入For a given dictionary, you are to compute the length of the longest edit step ladder. The input to your program consists of the dictionary --- a set of lower case words in lexicographic order --- one per line. No word exceeds 16 letters and there are no more than 25000 words in the dictionary. 输出Description An edit step is a transformation from one word x to another word y such that x and y are words in the dictionary, and x can be transformed to y by adding, deleting, or changing one letter. So the transformation from dig to dog or from dog to do are both edit steps. An edit step ladder is a lexicographically ordered sequence of words w1, w2, ... wn such that the transformation from wi to wi+1 is an edit step for all i from 1 to n-1. Input For a given dictionary, you are to compute the length of the longest edit step ladder. The input to your program consists of the dictionary --- a set of lower case words in lexicographic order --- one per line. No word exceeds 16 letters and there are no more than 25000 words in the dictionary. Output The output consists of a single integer, the number of words in the longest edit step ladder. Sample Input cat Sample Output 5 Source 样例输入cat 样例输出5 作者 |