BZOJ2580: [Usaco2012 Jan]Video Game(AC自动机)
2018-07-03 01:01:13来源:博客园 阅读 ()
Submit: 159 Solved: 110
[Submit][Status][Discuss]
Description
Input
Line 1: Two space-separated integers: N and K. * Lines 2..N+1: Line i+1 contains only the string S_i, representing combo i.
Output
Line 1: A single integer, the maximum number of points Bessie can obtain.
Sample Input
Sample Output
HINT
The optimal sequence of buttons in this case is ABACBCB, which gives 4 points--1 from ABA, 1 from ABACB, and 2 from CB.
Source
AC自动机应该不难看出来
按照套路dp,设$f[i][j]$表示枚举到第$i$个位置,现在位于自动机上的第$i$位。
转移的时候枚举下一个位置就好
有两个需要注意的地方
1.Trie树在我们建fail树的时候实际被我们改造成了Trie图,因此每个节点是可能被多次枚举到的,需要对自身取$max$
2.有些深度大于当前枚举长度的点是不可能走到的,因此开始时应把每个点的权值设为$-INF$(root除外)
// luogu-judger-enable-o2 // luogu-judger-enable-o2 #include<cstdio> #include<cstring> #include<queue> using namespace std; const int MAXN = 301, B = 3; int T, K; char s[17]; int ch[MAXN][4], f[1001][MAXN], fail[MAXN], val[MAXN], tot = 0, root = 0; void insert(char *s) { int N = strlen(s + 1); int now = root; for(int i = 1; i <= N; i++) { int x = s[i] - 'A'; if(!ch[now][x]) ch[now][x] = ++tot; now = ch[now][x]; } val[now]++; } void GetFail() { queue<int> q; for(int i = 0; i < B; i++) if(ch[root][i]) q.push(ch[root][i]); while(!q.empty()) { int p = q.front(); q.pop(); for(int i = 0; i < B; i++) { if(!ch[p][i]) ch[p][i] = ch[fail[p]][i]; else fail[ch[p][i]] = ch[fail[p]][i], q.push(ch[p][i]); } val[p] += val[fail[p]]; } } int Dp() { memset(f, -0x3f, sizeof(f)); for(int i = 0; i <= K; i++) f[i][0] = 0;//óDD?×′ì?ê?2??é?ü′?μ?μ?£?òò′?Dèòa?e2??üD? int ans = 0; for(int i = 1; i <= K; i++) for(int j = 0; j <= tot; j++) for(int k = 0; k < B; k++) { int son = ch[j][k]; if(son) { f[i][son] = max(f[i][son], f[i - 1][j] + val[son]); printf("%d %d %d %d %d\n", i, j, k, son, f[i][son]); } } for(int i = 0; i <= tot; i++) ans = max(ans, f[K][i]); return ans; } int main() { #ifdef WIN32 freopen("a.in", "r", stdin); #endif scanf("%d %d", &T, &K); for(int i = 1; i <= T; i++) scanf("%s", s + 1), insert(s); GetFail(); printf("%d", Dp()); return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- LuoguP3069 【[USACO13JAN]牛的阵容Cow Lineup 2019-10-30
- P5200 [USACO19JAN]Sleepy Cow Sorting 2019-08-26
- Tarjan算法初探 (1):Tarjan如何求有向图的强连通分量 2019-04-11
- BZOJ1576: [Usaco2009 Jan]安全路经Travel(最短路 并查集) 2018-09-10
- BZOJ1093: [ZJOI2007]最大半连通子图(tarjan dp) 2018-09-01
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash