博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SPOJ 7758. Growing Strings AC自动机DP
阅读量:4967 次
发布时间:2019-06-12

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

题目:给出n个字符串,问最多能够选出多少个串组成序列,并满足前一个字符串是后一个字符串的子串。

分析:

  AC自动机经典水题。。。

  考虑每个节点结尾时,他能够选出最多的串 = max{ 父节点选出  , fail节点选出 }+以该节点为结尾的单词个数

 

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef unsigned long long ull;#define debug puts("here")#define rep(i,n) for(int i=0;i
#define PQ priority_queue#define cmax(x,y) x = max(x,y)#define cmin(x,y) x = min(x,y)#define Clear(x) memset(x,0,sizeof(x))#define lson rt<<1#define rson rt<<1|1#define SZ(x) x.size()/*#pragma comment(linker, "/STACK:1024000000,1024000000")int ssize = 256 << 20; // 256MBchar *ppp = (char*)malloc(ssize) + ssize;__asm__("movl %0, %%esp\n" :: "r"(ppp) );*/char IN;bool NEG;inline void Int(int &x){ NEG = 0; while(!isdigit(IN=getchar())) if(IN=='-')NEG = 1; x = IN-'0'; while(isdigit(IN=getchar())) x = x*10+IN-'0'; if(NEG)x = -x;}inline void LL(ll &x){ NEG = 0; while(!isdigit(IN=getchar())) if(IN=='-')NEG = 1; x = IN-'0'; while(isdigit(IN=getchar())) x = x*10+IN-'0'; if(NEG)x = -x;}/******** program ********************/const int MAXN = 1e6+5;const int kind = 26;char s[MAXN];struct AC{ int dp[MAXN]; int ch[MAXN][kind],fail[MAXN]; int end[MAXN]; int tot; inline void set(int x){ Clear(ch[x]); fail[x] = end[x] = dp[x] = 0; } inline void init(){ set(tot = 1); } inline int newNode(){ set(++tot); return tot; } inline int ind(char c){ return c-'a'; } inline void ins(){ int r = 1; for(int i=0;s[i];i++){ int c = ind(s[i]); if(ch[r][c]==0) ch[r][c] = newNode(); r = ch[r][c]; } ++end[r]; } inline void build(){ queue
q; q.push(1); while(!q.empty()){ int r = q.front(); q.pop(); rep(c,kind){ int x = ch[r][c]; if(!x)continue; q.push(x); int y = fail[r]; while(y&&ch[y][c]==0) y = fail[y]; fail[x] = y?ch[y][c]:1; dp[x] = max( dp[r],dp[ fail[x] ] )+end[x]; } } cout<<*max_element(dp+1,dp+tot+1)<

 

  

 

转载于:https://www.cnblogs.com/yejinru/p/3352821.html

你可能感兴趣的文章
MapReduce 重要组件——Recordreader组件 [转]
查看>>
webdriver api
查看>>
apache 实现图标缓存客户端
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
P3565 [POI2014]HOT-Hotels
查看>>
MongoDB的简单使用
查看>>
hdfs 命令使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
Setting up a Passive FTP Server in Windows Azure VM(ReplyCode: 227, Entering Passive Mode )
查看>>
Python模块调用
查看>>
委托的调用
查看>>