DNA repair
Time Limit: 2000MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u

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
 
【题意】
  已知一个DNA串和一些病毒DNA序列,求出最少改变DNA串中多少个字符,能使得串中不包含任意一个病毒序列。
 

【分析】

  建AC自动机然后DP,不要走到有标记的点即可。

代码如下:

 #include<cstdio>
#include<cstdlib>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
#define Maxn 3010
#define Maxl 1010
#define INF 0xfffffff int n;
char s[];
char ss[Maxl]; struct node
{
int cnt,fail;
bool mark;
int son[];
}t[Maxn];int tot;//=0; void upd(int x)
{
t[x].cnt=;t[x].mark=;
memset(t[x].son,,sizeof(t[x].son));
} int mymin(int x,int y) {return x<y?x:y;} void read_trie()
{
scanf("%s",s+);
int len=strlen(s+);
int now=;
for(int i=;i<=len;i++)
{
int ind=s[i]-'A'+;
if(ind==) ind=;
else if(ind==) ind=;
else if(ind==) ind=;
if(!t[now].son[ind])
{
t[now].son[ind]=++tot;
upd(tot);
}
now=t[now].son[ind];
if(i==len) t[now].mark=;
}
} queue<int > q;
// bool inq[Maxn];
void build_AC()
{
while(!q.empty()) q.pop();
q.push();//inq[0]=1;
while(!q.empty())
{
int x=q.front();q.pop();
for(int i=;i<=;i++)
{
if(t[x].son[i])
{
t[t[x].son[i]].fail=x?t[t[x].fail].son[i]:;
q.push(t[x].son[i]);
}
else t[x].son[i]=t[t[x].fail].son[i];
if(t[t[x].fail].mark) t[x].mark=;
}
}
} int f[Maxn][Maxl];
void dp()
{
scanf("%s",ss+);
int len=strlen(ss+);
for(int i=;i<=len;i++)
{
if(ss[i]=='C') ss[i]='B';
else if(ss[i]=='G') ss[i]='C';
else if(ss[i]=='T') ss[i]='D';
}
memset(f,,sizeof(f));
f[][]=;
for(int i=;i<=len;i++)
for(int j=;j<=tot;j++) if(f[i-][j]<INF)
{
for(int k=;k<=;k++) if(!t[t[j].son[k]].mark)
{
if(ss[i]-'A'+==k)
f[i][t[j].son[k]]=mymin(f[i][t[j].son[k]],f[i-][j]);
else f[i][t[j].son[k]]=mymin(f[i][t[j].son[k]],f[i-][j]+);
}
}
int ans=INF;
for(int i=;i<=tot;i++) ans=mymin(f[len][i],ans);
if(ans<=len) printf("%d\n",ans);
else printf("-1\n");
} void init()
{
tot=;
upd();
for(int i=;i<=n;i++)
{
read_trie();
}
build_AC();
} int main()
{
int kase=;
while()
{
scanf("%d",&n);
if(n==) break;
init();
printf("Case %d: ",++kase);
dp();
}
return ;
}

[POJ3691]

2016-07-11 10:06:17

最新文章

  1. HTTP学习二:Web应用中的HTTP
  2. .gitignore的多级目录配置
  3. window.innerWidth、document.body.clientWidth和html的大小的区别
  4. cojs QAQ的序列 解题报告
  5. Ajax ContentType 列表
  6. winfrom 多语言切换
  7. [转载]MongoDB学习 (六):查询
  8. oracle 定义临时表
  9. angularjs应用骨架(4)
  10. Scrapy基础(十三)————ItemLoader的简单使用
  11. input输入的数据只允许整数和浮点型数据
  12. Qt+数据库发布后无法打开数据库
  13. file类中,命令记录
  14. Win8常用快捷键
  15. 使用keras导入densenet模型
  16. nginx+tomcat把带WWW域名自动跳转到不带www域名方法
  17. git code 初次上传
  18. 0068 Git入门的第一节课
  19. FreeRTOS——任务调度—抢占式,时间片和合作式
  20. org.springframework.beans.factory.BeanNotOfRequiredTypeException

热门文章

  1. LabVIEW设计模式系列——普遍使用值改变事件
  2. Linux命令之ssh
  3. mongnodb 启动脚本
  4. thinkphp3.2.x版本中图片上传缩略图的解决方案
  5. Bootstrap 开关(switch)控件需要注意的问题
  6. 网页版 treeview使用中遇到的问题
  7. Javascript基础学习(2)_表达式和运算符
  8. CATransform3DRotate 实现左右,上下翻转效果
  9. CABasicAnimation添加动画离开屏幕就动画停止的问题
  10. cocos2dx系列笔记(1)- windows环境配置前篇