链接:

https://vjudge.net/problem/HDU-3341

题意:

Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man called "nuclear weapon of FZU,descendant of Jingrun", because of his talent in the field of number theory. So Lost had never won the game. He was so ashamed and angry, but he didn't know how to improve his level of number theory.

One noon, when Lost was lying on the bed, the Spring Brother poster on the wall(Lost is a believer of Spring Brother) said hello to him! Spring Brother said, "I'm Spring Brother, and I saw AekdyCoin shames you again and again. I can't bear my believers were being bullied. Now, I give you a chance to rearrange your gene sequences to defeat AekdyCoin!".

It's soooo crazy and unbelievable to rearrange the gene sequences, but Lost has no choice. He knows some genes called "number theory gene" will affect one "level of number theory". And two of the same kind of gene in different position in the gene sequences will affect two "level of number theory", even though they overlap each other. There is nothing but revenge in his mind. So he needs you help to calculate the most "level of number theory" after rearrangement.

思路:

看得出DP, 但是不会记录状态.

考虑a,t,g,c的个数, 令每个的进制为个数加1.则0-x, 用x+1进制存储.

枚举使用状态..

会存在重复

代码:

#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
//#include <memory.h>
#include <queue>
#include <set>
#include <map>
#include <algorithm>
#include <math.h>
#include <stack>
#include <string>
#include <assert.h>
#include <iomanip>
#include <iostream>
#include <sstream>
#define MINF 0x3f3f3f3f
using namespace std;
typedef long long LL;
const LL MOD = 20090717;
const LL MAXN = 2e6+10;
const int MAXASCII = 4; struct TrieTree
{
int Next[MAXASCII];
int end;
int fail;
void Clear()
{
memset(Next, 0, sizeof(Next));
end = 0;
fail = 0;
}
}tree[MAXN]; char s[MAXN];
int Dp[1010][11*11*11*11+10];
map<char, int> Mp;
int n, m, k, cnt; void Insert(char *s)
{
int len = strlen(s);
int p = 0;
for (int i = 0;i < len;i++)
{
if (tree[p].Next[Mp[s[i]]] == 0)
tree[p].Next[Mp[s[i]]] = ++cnt, tree[cnt].Clear();
p = tree[p].Next[Mp[s[i]]];
}
tree[p].end++;
} void BuildAC()
{
queue<int> que;
for (int i = 0;i < MAXASCII;i++)
{
if (tree[0].Next[i] != 0)
{
tree[tree[0].Next[i]].fail = 0;
que.push(tree[0].Next[i]);
}
}
while (!que.empty())
{
int u = que.front();
que.pop();
tree[u].end += tree[tree[u].fail].end;
for (int i = 0;i < MAXASCII;i++)
{
if (tree[u].Next[i] != 0)
{
tree[tree[u].Next[i]].fail = tree[tree[u].fail].Next[i];
que.push(tree[u].Next[i]);
}
else
tree[u].Next[i] = tree[tree[u].fail].Next[i];
}
}
} int Solve()
{
int Num[4] = {0}, Bit[4];
int len = strlen(s+1);
for (int i = 1;i <= len;i++)
Num[Mp[s[i]]]++;
Bit[0] = (Num[3]+1)*(Num[2]+1)*(Num[1]+1);
Bit[1] = (Num[3]+1)*(Num[2]+1);
Bit[2] = (Num[3]+1);
Bit[3] = 1;
memset(Dp, -1, sizeof(Dp));
Dp[0][0] = 0;
for (int A = 0;A <= Num[0];A++)
{
for (int B = 0; B <= Num[1]; B++)
for (int C = 0; C <= Num[2]; C++)
for (int D = 0; D <= Num[3]; D++)
{
int state = A*Bit[0]+B*Bit[1]+C*Bit[2]+D;
for (int j = 0;j <= cnt;j++)
{
if (Dp[j][state] == -1)
continue;
for (int t = 0;t < 4;t++)
{
if (t == 0 && A == Num[0])
continue;
if (t == 1 && B == Num[1])
continue;
if (t == 2 && C == Num[2])
continue;
if (t == 3 && D == Num[3])
continue;
int node = tree[j].Next[t];
Dp[node][state+Bit[t]] = max(Dp[node][state+Bit[t]], Dp[j][state]+tree[node].end);
}
}
}
}
int res = 0;
int sta = Num[0]*Bit[0]+Num[1]*Bit[1]+Num[2]*Bit[2]+Num[3]*Bit[3];
for (int i = 0;i <= cnt;i++)
res = max(res, Dp[i][sta]);
return res;
} int main()
{
Mp['A'] = 0;
Mp['T'] = 1;
Mp['G'] = 2;
Mp['C'] = 3;
int testcnt = 0;
while (~scanf("%d", &n) && n)
{
cnt = 0;
tree[cnt].Clear();
for (int i = 1;i <= n;i++)
{
scanf("%s", s);
Insert(s);
}
scanf("%s", s+1);
BuildAC();
printf("Case %d: %d\n", ++testcnt, Solve());
} return 0;
}

HDU-3341-Lost's revenge(AC自动机, DP, 压缩)的更多相关文章

  1. HDU 3341 Lost's revenge AC自动机+dp

    Lost's revenge Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 65535/65535 K (Java/Others)T ...

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

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

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

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

  4. HDU 4758 Walk Through Squares(AC自动机+DP)

    题目链接 难得出一个AC自动机,我还没做到这个题呢...这题思路不难想,小小的状压出一维来,不过,D和R,让我wa死了,AC自动机,还得刷啊... #include<iostream> # ...

  5. [HDU 4787] GRE Words Revenge (AC自动机)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4787 题目大意: 给你若干个单词,查询一篇文章里出现的单词数.. 就是被我水过去的...暴力重建AC自 ...

  6. HDU 4758 Walk Through Squares( AC自动机 + 状态压缩DP )

    题意:给你两个串A,B, 问一个串长为M+N且包含A和B且恰好包含M个R的字符串有多少种组合方式,所有字符串中均只含有字符L和R. dp[i][j][k][S]表示串长为i,有j个R,在自动机中的状态 ...

  7. HDU 4057 Rescue the Rabbit ( AC自动机 + 状态压缩DP )

    模板来自notonlysuccess. 模式串只有10个,并且重复出现的分值不累加,因此很容易想到状态压缩. 将模式串加入AC自动机,最多有10*100个状态. dp[i][j][k]:串长为i,在T ...

  8. HDU 2825 Wireless Password【AC自动机+DP】

    给m个单词,由这m个单词组成的一个新单词(两个单词可以重叠包含)长度为n,且新单词中包含的基本单词数目不少于k个.问这样的新单词共有多少个? m很小,用二进制表示新单词中包含基本单词的情况. 用m个单 ...

  9. HDU3341 Lost's revenge(AC自动机&&dp)

    一看到ACGT就会想起AC自动机上的dp,这种奇怪的联想可能是源于某道叫DNA什么的题的. 题意,给你很多个长度不大于10的小串,小串最多有50个,然后有一个长度<40的串,然后让你将这个这个长 ...

随机推荐

  1. Vue.js与React的全面对比

    Vue与React的对比 Vue.js与React.js从某些反面来说很相似,通过两个框架的学习,有时候对一些用法会有一点思考,为加深学习的思索,特翻阅了两个文档,从以下各方面进行了对比,加深了对这两 ...

  2. java多线程上篇(三) -- 进程通信和线程死锁简单介绍

    进程通信指的是进程间的信息交换 ,IPC(Inter-Process Communication,进程间通信) 进程通信就相当于一种工作方式.沟通形式,进程通信主要指的就是操作系统提供的进程通信工具( ...

  3. JVM OOM异常会导致JVM退出吗?

    出处:  https://mp.weixin.qq.com/s/8j8YTcr2qhVActLGzOqe7Q  https://blog.csdn.net/h2604396739/article/de ...

  4. 【数据结构】Tournament Chart

    Tournament Chart 题目描述 In 21XX, an annual programming contest, Japan Algorithmist GrandPrix (JAG) has ...

  5. Http中的同步请求和异步请求

    最近在上springmvc的JSON数据交换的时候,老师下课提了一个课后问题:什么是异步请求?什么是同步请求?我想大部分同学听到这个问题的时候应该和我一样不知所云.现在,给大家分享一篇关于同步请求和异 ...

  6. 如何将Linux的工程原封不动地移植到Windows上面

    习惯在Linux下进行开发.但是由于工作需要,不得不与其他使用Windows的项目组同事对接,同事要求我给出可用的程序,而我只有基于makefile的传统工程. 改动到VS工程上发现一部分头文件在Wi ...

  7. (六)Spring Boot之日志配置-logback和log4j2

    一.简介 支持日志框架:Java Util Logging, Log4J2 and Logback,默认是使用logback 配置方式: 默认配置文件配置 引用外部配置文件配置 二.默认配置文件配置( ...

  8. .net core 依赖注入在特性中的应用

    .net core 依赖注入在特性中的应用,不知道怎么用属性注入,那么在特性中的构造函数里,怎么用接口的方法呢? 来一个简单的例子: 主要思路是把ServiceProvider 静态全局化: publ ...

  9. 组装技术的新进展 New advances in sequence assembly.

    组装技术的新进展 1.测序和组装 很难想象今天距离提出测序和组装已经有40年啦.我们回头来看一下这个问题. “With modern fast sequencing techniques and su ...

  10. SpringCloud"灰度部署"——动态刷新网关配置

    通过Acutator和SpringCloudConfig完成"灰度部署"——动态刷新网关路由配置 先声明下,我这个可能是冒牌的灰度部署,技术有限,纯粹个人笔记分享. 前段时间接到了 ...