博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bzoj1212: [HNOI2004]L语言
阅读量:5740 次
发布时间:2019-06-18

本文共 1784 字,大约阅读时间需要 5 分钟。

题面

Sol

先建立AC自动机,trie树上每个字符串结束的位置记录下它的长度\(len\)

\(f[i]\)表示前\(i\)个字符是否被翻译
在AC自动机上匹配,跳\(fail\)转移,该点为\(x\),则\(f[i]\)\(f[i-len[x]]\)转移而来
太菜了不会trie的暴力

# include 
# define RG register# define IL inline# define Fill(a, b) memset(a, b, sizeof(a))using namespace std;typedef long long ll;const int _(4e6 + 10);IL ll Read(){ RG ll x = 0, z = 1; RG char c = getchar(); for(; c < '0' || c > '9'; c = getchar()) z = c == '-' ? -1 : 1; for(; c >= '0' && c <= '9'; c = getchar()) x = (x << 1) + (x << 3) + (c ^ 48); return x * z;}int n, m, tot, ch[26][23333], ed[23333], fail[23333];bool f[_];char s[30], t[_];queue
Q;IL void Insert(){ RG int len = strlen(s), x = 0; for(RG int i = 0; i < len; ++i){ if(!ch[s[i] - 'a'][x]) ch[s[i] - 'a'][x] = ++tot; x = ch[s[i] - 'a'][x]; } ed[x] = len;}IL void Get_Fail(){ for(RG int i = 0; i < 26; ++i) if(ch[i][0]) Q.push(ch[i][0]); while(!Q.empty()){ RG int fa = Q.front(); Q.pop(); for(RG int i = 0; i < 26; ++i) if(!ch[i][fa]) ch[i][fa] = ch[i][fail[fa]]; else fail[ch[i][fa]] = ch[i][fail[fa]], Q.push(ch[i][fa]); }}IL int Compare(){ Fill(f, 0); f[0] = 1; RG int ans = 0, len = strlen(t + 1); for(RG int i = 1, x = 0; i <= len; ++i){ x = ch[t[i] - 'a'][x]; for(RG int j = x; j; j = fail[j]){ f[i] |= f[i - ed[j]]; if(f[i]) break; } } for(RG int i = 1; i <= len; ++i) if(f[i]) ans = i; return ans;}int main(RG int argc, RG char* argv[]){ n = Read(); m = Read(); for(RG int i = 1; i <= n; ++i) scanf(" %s", s), Insert(); Get_Fail(); for(RG int i = 1; i <= m; ++i) scanf(" %s", t + 1), printf("%d\n", Compare()); return 0;}

转载于:https://www.cnblogs.com/cjoieryl/p/8316864.html

你可能感兴趣的文章
系列3:WAS Liberty Profile hello mysql jdbc
查看>>
基础知识:python模块的导入
查看>>
Android MVC之我的实现
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
关于批处理-1
查看>>
Tomcat部署Web应用方法总结
查看>>
Python3 django2.0 字段加密 解密 AES
查看>>
CCNA实验之:网络地址转换(NAT)实验
查看>>
计算机网络原理笔记-停止等待协议
查看>>
确定当前记录和下一条记录之间相差的天数
查看>>
sql语句返回主键SCOPE_IDENTITY()
查看>>
机器学习开源项目精选TOP30
查看>>
iOS开发-邮件发送
查看>>
/etc/resolv.conf文件详解
查看>>
【转】VC的MFC中重绘函数的使用总结(整理)
查看>>
JQuery日记_5.13 Sizzle选择器(六)选择器的效率
查看>>
oracle查看经常使用的系统信息
查看>>
Django_4_视图
查看>>
Linux的netstat命令使用
查看>>