[AC自动机+dp]PKU 3691--DNA repair

DNA repair
Time Limit: 2000MS Memory Limit: 65536K
Total Submissions: 1469 Accepted: 650

Description

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.

Input

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.

Output

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.

 

Sample Input

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

Sample Output

Case 1: 1
Case 2: 4
Case 3: -1
题目大意:给出一个字符串和若干个非法子串,求最少修改字符串中的多少个字符可以使得字符串中不存在非法子串。

分析:若字符串是01串,若子串长度为10,可以用经典的状态压缩dp解决,即:f[i,j]表示前i个,前9个数字状态为j的最小修改次数。然而,本题数据规模大得多,不能用这个dp。

我们来分析一下状态,对于以下的这个输入:

AAA

GT

XXXXXX

TC、AT、CT之类的状态其实都是一样的。

这些状态都是什么呢?

有穷状态自动机上的某些节点。

我们只要对所有的非法子串,构建一个AC自动机,那么自动机上的某个节点即为一类状态。

所以得到以下动态规划算法:

令f[i,j]表示对于字符串中的前i位,使得状态为自动机上的节点j,期间不经过任何一个非法子串需要修改的最少字符数。

则f[i,j]=min(f[i-1,k]+(1-ord(s[i]=way[k,j])))。其中,k为j的父亲节点(不一定是直接的父亲),way[k,j]为k连向j的边所代表的字母。这个转移方程不难理解,若第i位和边的字符不同,需要修改,答案+1,否则不用。答案便是max(f[len,i]),i不为某个非法子串的最后一个字母。

另外,在构建失败指针的同时,若某个节点的某个儿子为空,则要通过失败指针找到一个儿子,不然指向根。

具体的参看程序。

 

codes:

 

 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值