hdu 2457 DNA repair
AC自动机+DP。按着自动机跑,(其实是生成新的满足题目要求的串,然后找改变最少的。)但是不能跑到是单词的地方,如果跑到单词的话那么说明改变后的串含有病毒了,不满足题意。然后就是应该怎么跑的问题了,现在我们从自动机的根节点开始跑,如果跑到下一个节点和当前串的字母不一样的话,那么当前位置生成的串是和原串在该位置是有差异的,dp+1,否者的话dp不变。所以dp[ i ][ j ]表示的是匹配到当前匹配串的位置时,跑到自动机的 j 节点需要改变的最少字母数。
- #include <algorithm>
- #include <iostream>
- #include <sstream>
- #include <cstdlib>
- #include <climits>
- #include <cstring>
- #include <cstdio>
- #include <string>
- #include <vector>
- #include <cctype>
- #include <queue>
- #include <cmath>
- #include <set>
- #include <map>
- #define CLR(a, b) memset(a, b, sizeof(a))
- using namespace std;
- const int MAX_NODE = 22 * 55 * 2;
- const int INF = 0x3f3f3f3f;
- const int CHILD_NUM = 4;
- const int N = 1010;
- class ACAutomaton
- {
- private:
- int chd[MAX_NODE][CHILD_NUM];
- int dp[N][MAX_NODE];
- int fail[MAX_NODE];
- bool val[MAX_NODE];
- int Q[MAX_NODE];
- int ID[128];
- int sz;
- public:
- void Initialize()
- {
- fail[0] = 0;
- ID['A'] = 0;ID['G'] = 1;
- ID['C'] = 2;ID['T'] = 3;
- }
- void Reset()
- {
- CLR(chd[0] , 0);sz = 1;
- }
- void Insert(char *a)
- {
- int p = 0;
- for ( ; *a ; a ++)
- {
- int c = ID[*a];
- if (!chd[p][c])
- {
- CLR(chd[sz] , 0);
- val[sz] = false;
- chd[p][c] = sz ++;
- }
- p = chd[p][c];
- }
- val[p] = true;
- }
- void Construct()
- {
- int *s = Q , *e = Q;
- for (int i = 0 ; i < CHILD_NUM ; i ++)
- {
- if (chd[0][i])
- {
- fail[ chd[0][i] ] = 0;
- *e ++ = chd[0][i];
- }
- }
- while (s != e)
- {
- int u = *s++;
- for (int i = 0 ; i < CHILD_NUM ; i ++)
- {
- int &v = chd[u][i];
- if (v)
- {
- *e ++ = v;
- fail[v] = chd[ fail[u] ][i];
- val[v] |= val[fail[v]];
- }
- else
- {
- v = chd[ fail[u] ][i];
- }
- }
- }
- }
- int Work(char *ch)
- {
- int len, S, T, ret;
- len = strlen(ch);
- CLR(dp, INF);dp[0][0] = 0;
- for(int i = 0; i < len; i ++)
- for(int j = 0; j < sz; j ++)
- {
- if(val[j]) continue;
- if(dp[i][j] == INF) continue;
- for(int k = 0; k < 4; k ++)
- {
- T = chd[j][k];
- if(val[T]) continue;
- dp[i + 1][T] = min(dp[i + 1][T], dp[i][j] + (ID[ch[i]] != k));
- }
- }ret = INF;
- for(int i = 0; i < sz; i ++)
- {
- ret = min(ret, dp[len][i]);
- }
- return ret == INF ? -1 : ret;
- }
- } AC;
- char ch[N];
- int main()
- {
- //freopen("input.txt", "r", stdin);
- AC.Initialize();
- int n, t, cas = 1;
- while (scanf("%d", &n), n)
- {
- AC.Reset();
- for (int i = 0 ; i < n ; i ++)
- {
- char temp[55];
- scanf("%s", temp);
- AC.Insert(temp);
- }
- scanf("%s", ch);
- AC.Construct();
- printf("Case %d: %d\n", cas ++, AC.Work(ch));
- }
- return 0;
- }
hdu 2457 DNA repair的更多相关文章
- HDU 2457 DNA repair(AC自动机+DP)题解
题意:给你几个模式串,问你主串最少改几个字符能够使主串不包含模式串 思路:从昨天中午开始研究,研究到现在终于看懂了.既然是多模匹配,我们是要用到AC自动机的.我们把主串放到AC自动机上跑,并保证不出现 ...
- POJ 3691 & 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: ...
- HDU 2457 DNA repair (AC自动机+DP)
题意:给N个串,一个大串,要求在最小的改变代价下,得到一个不含上述n个串的大串. 思路:dp,f[i][j]代表大串中第i位,AC自动机上第j位的最小代价. #include<algorithm ...
- Hdu 2457 DNA repair (ac自己主动机+dp)
题目大意: 改动文本串的上的字符,使之不出现上面出现的串.问最少改动多少个. 思路分析: dp[i][j]表示如今 i 个字符改变成了字典树上的 j 节点. 然后顺着自己主动机一直转移方程. 注意合法 ...
- HDU 2425 DNA repair (AC自动机+DP)
DNA repair Time Limit: 5000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total ...
- AC自动机+DP HDOJ 2457 DNA repair(DNA修复)
题目链接 题意: 给n串有疾病的DNA序列,现有一串DNA序列,问最少修改几个DNA,能使新的DNA序列不含有疾病的DNA序列. 思路: 构建AC自动机,设定end结点,dp[i][j]表示长度i的前 ...
- HDU 2457/POJ 3691 DNA repair AC自动机+DP
DNA repair Problem Description Biologists finally invent techniques of repairing DNA that contains ...
- hdu2457:DNA repair
AC自动机+dp.问改变多少个字符能让目标串不含病毒串.即走过多少步不经过病毒串终点.又是同样的问题. #include<cstdio> #include<cstring> # ...
- 【POJ3691】 DNA repair (AC自动机+DP)
DNA repair Time Limit: 2000MS Memory Limit: 65536KB 64bit IO Format: %I64d & %I64u Description B ...
随机推荐
- GoogleCode新手教程
GoogleCode页面介绍 Project Home 首先显示的是project home,页面左边的是这个项目的介绍,右边的License是说明使用的是什么开源协议,Labels是标签的意思,就是 ...
- Apache 多站点(虚拟主机)
普遍 apache多站点(灰色(连接一起的红色)字体 为命令) 编辑文件:httpd.conf 找到以下内容: # Virtual hosts # Include /private/etc/apach ...
- 当xcode里点运行出现treating unicode character as whites
可能是由于粘贴网页上的代码的时候两行之间的回车引起的,两行之间重新输入回车就行......删掉重新写一遍就ok了 引入网页上的回车时 可能 网页对其格式做了处理,所以Xcode 不认识了
- 金山网络2014春季Android实习生招聘-成都站-笔试第一题
实现单例模式,并实现方法int getResult(float a),将a*8后返回. package jinshanwangluo.exam; /** * @author guoxm * @date ...
- wampsever 数据库初体验
Wamp就是Windos Apache Mysql PHP集成安装环境,即在window下的apache.php和mysql的服务器软件.PHP扩展.Apache模块,开启/关闭鼠标点点就搞定,再 也 ...
- fineuploader 上传jquery 控件
fineuploader 昨天用的一个jquery插件. 可参考这篇文章以前写的 file-uploader 跟 这个跟里面介绍的2个jquery 插件相比.觉得更强大写..版本号都3.9 了….. ...
- jQuery中的data方法:
向元素附加数据,然后取回该数据: $("#btn1").click(function(){ $("div").data("greeting" ...
- Codeforces Round #154 (Div. 2) : B
一个很简单的题: 方法一: 二分. 代码: #include<cstdio> #include<algorithm> #define maxn 100005 using nam ...
- android 上传图片到服务器Tomcat(Struts2)
在做android开发的时候,有时你会用到图片的上传功能,在我的android项目中,我是选中图片,点击上传多张图片 android客户端上传图片部分的代码如下: package com.exampl ...
- 11.在Global的Application_Error处理错误示例
Application_Error是在程序出问题时触发的事件. 这里面要用到错误页的情况,所以要配置web.config的customError项. 1.建立Global文件,在它的Applicati ...