会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
invoid
首页
新随笔
管理
2016年4月15日
bzoj1030
摘要: AC自动机和DP。 f[i][j] 表示在匹配到第i位置,处于ac自动机的j节点。决策第(i+1)个字母,计算出转移到第j2节点。 f[i+1][j2] += f[i][j]; #include #include #include using namespace std; const int maxl = 100 + 10; const int maxn = 6000; const i...
阅读全文
posted @ 2016-04-15 20:17 invoid
阅读(244)
评论(0)
推荐(0)
编辑
公告