您的位置:首页 > 大数据 > 人工智能

字符串练习题: 【HDU 2457】 DNA repair(AC自动机+DP)

2015-02-07 21:53 447 查看
题目:给出一些不合法的模式DNA串,给出一个原串,问最少需要修改多少个字符,使得原串中不包含非法串

HDU 2457 DNA repair(AC自动机+DP)

DNA repair

[b]Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 1470 Accepted Submission(s): 799

[/b]

[align=left]Problem Description[/align]
Biologists finally invent techniques of repairing DNA that contains segments causing kinds of inherited diseases. For the sake of simplicity, a DNA is represented as a string containing characters 'A', 'G' , 'C' and 'T'. The repairing
techniques are simply to change some characters to eliminate all segments causing diseases. For example, we can repair a DNA "AAGCAG" to "AGGCAC" to eliminate the initial causing disease segments "AAG", "AGC" and "CAG" by changing two characters. Note that
the repaired DNA can still contain only characters 'A', 'G', 'C' and 'T'.

You are to help the biologists to repair a DNA by changing least number of characters.

[align=left]Input[/align]
The input consists of multiple test cases. Each test case starts with a line containing one integers N (1 ≤ N ≤ 50), which is the number of DNA segments causing inherited diseases.

The following N lines gives N non-empty strings of length not greater than 20 containing only characters in "AGCT", which are the DNA segments causing inherited disease.

The last line of the test case is a non-empty string of length not greater than 1000 containing only characters in "AGCT", which is the DNA to be repaired.

The last test case is followed by a line containing one zeros.

[align=left]Output[/align]
For each test case, print a line containing the test case number( beginning with 1) followed by the

number of characters which need to be changed. If it's impossible to repair the given DNA, print -1.

[align=left]Sample Input[/align]

2
AAA
AAG
AAAG
2
A
TG
TGAATG
4
A
G
C
T
AGT
0


[align=left]Sample Output[/align]

Case 1: 1
Case 2: 4
Case 3: -1


[align=left]Source[/align]
2008 Asia Hefei Regional Contest Online by USTC
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: