AC自动机+DP。按着自动机跑,(其实是生成新的满足题目要求的串,然后找改变最少的。)但是不能跑到是单词的地方,如果跑到单词的话那么说明改变后的串含有病毒了,不满足题意。然后就是应该怎么跑的问题了,现在我们从自动机的根节点开始跑,如果跑到下一个节点和当前串的字母不一样的话,那么当前位置生成的串是和原串在该位置是有差异的,dp+1,否者的话dp不变。所以dp[ i ][ j ]表示的是匹配到当前匹配串的位置时,跑到自动机的 j 节点需要改变的最少字母数。

  1. #include <algorithm>
  2. #include <iostream>
  3. #include <sstream>
  4. #include <cstdlib>
  5. #include <climits>
  6. #include <cstring>
  7. #include <cstdio>
  8. #include <string>
  9. #include <vector>
  10. #include <cctype>
  11. #include <queue>
  12. #include <cmath>
  13. #include <set>
  14. #include <map>
  15. #define CLR(a, b) memset(a, b, sizeof(a))
  16. using namespace std;
  17.  
  18. const int MAX_NODE = 22 * 55 * 2;
  19. const int INF = 0x3f3f3f3f;
  20. const int CHILD_NUM = 4;
  21. const int N = 1010;
  22.  
  23. class ACAutomaton
  24. {
  25. private:
  26. int chd[MAX_NODE][CHILD_NUM];
  27. int dp[N][MAX_NODE];
  28. int fail[MAX_NODE];
  29. bool val[MAX_NODE];
  30. int Q[MAX_NODE];
  31. int ID[128];
  32. int sz;
  33. public:
  34. void Initialize()
  35. {
  36. fail[0] = 0;
  37. ID['A'] = 0;ID['G'] = 1;
  38. ID['C'] = 2;ID['T'] = 3;
  39. }
  40. void Reset()
  41. {
  42. CLR(chd[0] , 0);sz = 1;
  43. }
  44. void Insert(char *a)
  45. {
  46. int p = 0;
  47. for ( ; *a ; a ++)
  48. {
  49. int c = ID[*a];
  50. if (!chd[p][c])
  51. {
  52. CLR(chd[sz] , 0);
  53. val[sz] = false;
  54. chd[p][c] = sz ++;
  55. }
  56. p = chd[p][c];
  57. }
  58. val[p] = true;
  59. }
  60. void Construct()
  61. {
  62. int *s = Q , *e = Q;
  63. for (int i = 0 ; i < CHILD_NUM ; i ++)
  64. {
  65. if (chd[0][i])
  66. {
  67. fail[ chd[0][i] ] = 0;
  68. *e ++ = chd[0][i];
  69. }
  70. }
  71. while (s != e)
  72. {
  73. int u = *s++;
  74. for (int i = 0 ; i < CHILD_NUM ; i ++)
  75. {
  76. int &v = chd[u][i];
  77. if (v)
  78. {
  79. *e ++ = v;
  80. fail[v] = chd[ fail[u] ][i];
  81. val[v] |= val[fail[v]];
  82. }
  83. else
  84. {
  85. v = chd[ fail[u] ][i];
  86. }
  87. }
  88. }
  89. }
  90. int Work(char *ch)
  91. {
  92. int len, S, T, ret;
  93. len = strlen(ch);
  94. CLR(dp, INF);dp[0][0] = 0;
  95. for(int i = 0; i < len; i ++)
  96. for(int j = 0; j < sz; j ++)
  97. {
  98. if(val[j]) continue;
  99. if(dp[i][j] == INF) continue;
  100. for(int k = 0; k < 4; k ++)
  101. {
  102. T = chd[j][k];
  103. if(val[T]) continue;
  104. dp[i + 1][T] = min(dp[i + 1][T], dp[i][j] + (ID[ch[i]] != k));
  105. }
  106. }ret = INF;
  107. for(int i = 0; i < sz; i ++)
  108. {
  109. ret = min(ret, dp[len][i]);
  110. }
  111. return ret == INF ? -1 : ret;
  112. }
  113. } AC;
  114.  
  115. char ch[N];
  116.  
  117. int main()
  118. {
  119. //freopen("input.txt", "r", stdin);
  120. AC.Initialize();
  121. int n, t, cas = 1;
  122. while (scanf("%d", &n), n)
  123. {
  124. AC.Reset();
  125. for (int i = 0 ; i < n ; i ++)
  126. {
  127. char temp[55];
  128. scanf("%s", temp);
  129. AC.Insert(temp);
  130. }
  131. scanf("%s", ch);
  132. AC.Construct();
  133. printf("Case %d: %d\n", cas ++, AC.Work(ch));
  134. }
  135. return 0;
  136. }

hdu 2457 DNA repair的更多相关文章

  1. HDU 2457 DNA repair(AC自动机+DP)题解

    题意:给你几个模式串,问你主串最少改几个字符能够使主串不包含模式串 思路:从昨天中午开始研究,研究到现在终于看懂了.既然是多模匹配,我们是要用到AC自动机的.我们把主串放到AC自动机上跑,并保证不出现 ...

  2. POJ 3691 &amp; HDU 2457 DNA repair (AC自己主动机,DP)

    http://poj.org/problem?id=3691 http://acm.hdu.edu.cn/showproblem.php?pid=2457 DNA repair Time Limit: ...

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

    题意:给N个串,一个大串,要求在最小的改变代价下,得到一个不含上述n个串的大串. 思路:dp,f[i][j]代表大串中第i位,AC自动机上第j位的最小代价. #include<algorithm ...

  4. Hdu 2457 DNA repair (ac自己主动机+dp)

    题目大意: 改动文本串的上的字符,使之不出现上面出现的串.问最少改动多少个. 思路分析: dp[i][j]表示如今 i 个字符改变成了字典树上的 j 节点. 然后顺着自己主动机一直转移方程. 注意合法 ...

  5. HDU 2425 DNA repair (AC自动机+DP)

    DNA repair Time Limit: 5000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  6. AC自动机+DP HDOJ 2457 DNA repair(DNA修复)

    题目链接 题意: 给n串有疾病的DNA序列,现有一串DNA序列,问最少修改几个DNA,能使新的DNA序列不含有疾病的DNA序列. 思路: 构建AC自动机,设定end结点,dp[i][j]表示长度i的前 ...

  7. HDU 2457/POJ 3691 DNA repair AC自动机+DP

    DNA repair Problem Description   Biologists finally invent techniques of repairing DNA that contains ...

  8. hdu2457:DNA repair

    AC自动机+dp.问改变多少个字符能让目标串不含病毒串.即走过多少步不经过病毒串终点.又是同样的问题. #include<cstdio> #include<cstring> # ...

  9. 【POJ3691】 DNA repair (AC自动机+DP)

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

随机推荐

  1. GoogleCode新手教程

    GoogleCode页面介绍 Project Home 首先显示的是project home,页面左边的是这个项目的介绍,右边的License是说明使用的是什么开源协议,Labels是标签的意思,就是 ...

  2. Apache 多站点(虚拟主机)

    普遍 apache多站点(灰色(连接一起的红色)字体 为命令) 编辑文件:httpd.conf 找到以下内容: # Virtual hosts # Include /private/etc/apach ...

  3. 当xcode里点运行出现treating unicode character as whites

    可能是由于粘贴网页上的代码的时候两行之间的回车引起的,两行之间重新输入回车就行......删掉重新写一遍就ok了 引入网页上的回车时  可能  网页对其格式做了处理,所以Xcode  不认识了

  4. 金山网络2014春季Android实习生招聘-成都站-笔试第一题

    实现单例模式,并实现方法int getResult(float a),将a*8后返回. package jinshanwangluo.exam; /** * @author guoxm * @date ...

  5. wampsever 数据库初体验

    Wamp就是Windos Apache Mysql PHP集成安装环境,即在window下的apache.php和mysql的服务器软件.PHP扩展.Apache模块,开启/关闭鼠标点点就搞定,再 也 ...

  6. fineuploader 上传jquery 控件

    fineuploader 昨天用的一个jquery插件. 可参考这篇文章以前写的 file-uploader  跟 这个跟里面介绍的2个jquery 插件相比.觉得更强大写..版本号都3.9 了….. ...

  7. jQuery中的data方法:

    向元素附加数据,然后取回该数据: $("#btn1").click(function(){ $("div").data("greeting" ...

  8. Codeforces Round #154 (Div. 2) : B

    一个很简单的题: 方法一: 二分. 代码: #include<cstdio> #include<algorithm> #define maxn 100005 using nam ...

  9. android 上传图片到服务器Tomcat(Struts2)

    在做android开发的时候,有时你会用到图片的上传功能,在我的android项目中,我是选中图片,点击上传多张图片 android客户端上传图片部分的代码如下: package com.exampl ...

  10. 11.在Global的Application_Error处理错误示例

    Application_Error是在程序出问题时触发的事件. 这里面要用到错误页的情况,所以要配置web.config的customError项. 1.建立Global文件,在它的Applicati ...