MYF

HDU 5763 Another Meaning

题目链接

HDU 5763

题目类型:DP + KMP

题目来源:2016年多校Round4

题目分析

题目大意

给出一个原串a和一个匹配串b,b串表示两个意思,可以把a串中的所有b串当成两个意思做,问a串可以有多少种不同的意思?

解析

先确定状态dp[i],表示1~i这个串最多共有多少种意思,那么很显然有当(i-lenb~i-1)不为b串时,dp[i]=dp[i-1],否则则有dp[i] = dp[i-1] + dp[i-lenb]。剩下的只需要用kmp去匹配即可。kmp每次处理下一步跳到哪一个位置,当匹配时则下标后移,如果找到匹配串则加上lenb前面的值。

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <set>
#include <map>
#include <stack>
#include <cmath>
#include <queue>
#include <cstdio>
#include <string>
#include <vector>
#include <iomanip>
#include <bitset>
#include <cstring>
#include <iostream>
#include <deque>
#include <algorithm>
#define Memset(a,val) memset(a,val,sizeof(a))
#define PI acos(-1)
#define PB push_back
#define MP make_pair
#define rt(n) (i == n ? '\n' : ' ')
#define hi printf("Hi----------\n")
#define IN freopen("input.txt","r",stdin);
#define OUT freopen("output.txt","w",stdout);
#define debug(x) cout<<"Debug : ---"<<x<<"---"<<endl;
#pragma comment(linker, "/STACK:1024000000,1024000000")
using namespace std;
typedef pair<int,int> PII;
typedef long long ll;
const int maxn=100000+5;
const int mod=1000000007;
const int INF=0x3f3f3f3f;
const double eps=1e-8;
char a[maxn],b[maxn];
int dp[maxn],jump[maxn];
int main(){
int t;
scanf("%d",&t);
for (int cas=1; cas<=t; cas++) {
scanf("%s%s",a+1,b+1);
int len1 = strlen(a+1);
int len2 = strlen(b+1);
int j=0;
for (int i=2; i<=len2; i++) {
while (j&&b[i]!=b[j+1]) {
j = jump[j];
}
if (b[i]==b[j+1]) {
j++;
}
jump[i]=j;
}
j = 0;
dp[0]=1;
for (int i=1; i<=len1; i++) {
while (j&&a[i]!=b[j+1]) {
j=jump[j];
}
dp[i]=dp[i-1];
if (a[i]==b[j+1]) {
j++;
}
if (j==len2) {
dp[i]+=dp[i-len2];
dp[i]%=mod;
j=jump[j];
}
}
printf("Case #%d: %d\n",cas,dp[len1]);
}
}