博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVALive 3942 Remember the Word Tire+DP
阅读量:5826 次
发布时间:2019-06-18

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

 

dp[i]=sum{dp[j]} ,s[i...j-1]为出现过的单词,每次从s[i]开始查找全部出现的前缀s[i..j],前缀在Tire中存在则转移状态。

//#pragma comment(linker, "/STACK:1024000000,1024000000")#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long ll;typedef pair
pii;#define pb(a) push_back(a)#define INF 0x1f1f1f1f#define lson idx<<1,l,mid#define rson idx<<1|1,mid+1,r#define PI 3.1415926535898template
T min(const T& a,const T& b,const T& c) { return min(min(a,b),min(a,c));}template
T max(const T& a,const T& b,const T& c) { return max(max(a,b),max(a,c));}void debug() {#ifdef ONLINE_JUDGE#else freopen("d:\\in.txt","r",stdin); freopen("d:\\out1.txt","w",stdout);#endif}int getch() { int ch; while((ch=getchar())!=EOF) { if(ch!=' '&&ch!=' ')return ch; } return EOF;}struct TireNode{ int flag; TireNode *next[26]; TireNode() { flag=0; for(int i=0;i<26;i++) next[i]=NULL; }}*root;int Insert(const char *s){ TireNode *p=root; for(int i=0;s[i]!='\0';i++) { int v=s[i]-'a'; if(p->next[v]==NULL) { p=p->next[v]=new TireNode; }else p=p->next[v]; } p->flag=1; return 0;}char str[300300];int dp[300300];int f(int k){ if(str[k]=='\0')return 1; if(dp[k]>=0)return dp[k]; int x=0; TireNode *p=root; for(int i=0;str[i+k]!='\0';i++) { int v=str[i+k]-'a'; if(p->next[v]==NULL)break; else p=p->next[v]; if(p->flag) { x=(x+f(i+k+1))%20071027; } } return dp[k]=x;}int del(TireNode *p){ for(int i=0;i<26;i++) { if(p->next[i]!=NULL) del(p->next[i]); } delete p;}int main(){ int ca=0; while(scanf("%s",str)!=EOF) { root=new TireNode; int n; scanf("%d",&n); for(int i=1;i<=n;i++) { char s[110]; scanf("%s",s); Insert(s); } memset(dp,-1,sizeof(dp)); int num=f(0); printf("Case %d: %d\n",++ca,num); del(root); } return 0;}
View Code

 

转载于:https://www.cnblogs.com/BMan/p/3294294.html

你可能感兴趣的文章
独立开发一个云(PaaS)的核心要素, Go, Go, Go!!!
查看>>
MyBatis使用DEMO及cache的使用心得
查看>>
网站文章如何能自动判定是抄袭?一种算法和实践架构剖析
查看>>
【OpenCV学习】滚动条
查看>>
ofo用科技引领行业进入4.0时代 用户粘性连续8个月远甩摩拜
查看>>
兰州青年志愿者“中西合璧”玩快闪 温暖旅客回家路
查看>>
计划10年建10万廉价屋 新西兰政府:比想象中难
查看>>
甘肃发首版《3D打印职业教育教材》:校企合作育专才
查看>>
李娜入选国际网球名人堂 成亚洲第一人
查看>>
为找好心人抚养孩子 浙江一离婚父亲将幼童丢弃公园
查看>>
晚婚晚育 近20年巴西35岁以上孕妇增加65%
查看>>
读书:为了那个美妙的咔哒声
查看>>
我从过去八个月的AI公司面试中学到了什么?
查看>>
深入探究Immutable.js的实现机制(一)
查看>>
jsp改造之sitemesh注意事项
查看>>
智能硬件的时代,嵌入式是否已经日薄西山
查看>>
SpringBoot-Shiro使用
查看>>
iOS 9.0之后NSString encode方法替换
查看>>
解决 ThinkPHP5 无法接收 客户端 Post 传递的 Json 参数
查看>>
ASMFD (ASM Filter Driver) Support on OS Platforms (Certification Matrix). (文档 ID 2034681.1)
查看>>