hdu 1560 DNA sequence(迭代加深搜尋)(經典題)
阿新 • • 發佈:2019-02-07
The twenty-first century is a biology-technology developing century. We know that a gene is made of DNA. The nucleotide bases from which DNA is built are A(adenine), C(cytosine), G(guanine), and T(thymine). Finding the longest common subsequence between DNA/Protein
sequences is one of the basic problems in modern computational molecular biology. But this problem is a little different. Given several DNA sequences, you are asked to make a shortest sequence from them so that each of the given sequence is the subsequence
of it.
Output For each test case, print a line containing the length of the shortest sequence that can be made from these sequences.
Sample Input 1 4 ACGT ATGC CGTT CAGT
Sample Output 8
For example, given "ACGT","ATGC","CGTT" and "CAGT", you can make a sequence in the following way. It is the shortest but may be not the only one.
Output For each test case, print a line containing the length of the shortest sequence that can be made from these sequences.
Sample Input 1 4 ACGT ATGC CGTT CAGT
Sample Output 8