Description

Binary-coded decimal (BCD) is an encoding for decimal numbers in which each digit is represented by its own binary sequence. To encode a decimal number using the common BCD encoding, each decimal digit is stored in a 4-bit nibble:

Decimal:    0     1     2     3     4     5     6     7     8     9
BCD: 0000 0001 0010 0011 0100 0101 0110 0111 1000 1001

Thus, the BCD encoding for the number 127 would be:

 0001 0010 0111

We are going to transfer all the integers from A to B, both inclusive, with BCD codes. But we find that some continuous bits, named forbidden code, may lead to errors. If the encoding of some integer contains these forbidden codes, the integer can not be transferred correctly. Now we need your help to calculate how many integers can be transferred correctly.

Input

There are multiple test cases. The first line of input is an integer T ≈ 100 indicating the number of test cases.

The first line of each test case contains one integer N, the number of forbidden codes ( 0 ≤ N ≤ 100). Then N lines follow, each of which contains a 0-1 string whose length is no more than 20. The next line contains two positive integers A and B. Neither A or B contains leading zeros and 0 < A ≤ B < 10200.

Output

For each test case, output the number of integers between A and B whose codes do not contain any of the N forbidden codes in their BCD codes. For the result may be very large, you just need to output it mod 1000000009.

Sample Input

3
1
00
1 10
1
00
1 100
1
1111
1 100

Sample Output

3
9
98 还是太怂了啊……终究还是只能照着CZL的标程写出来……gg啦
先预处理出AC自动机上某个节点在它后面加上[0...9]这些数字之后会到达哪一个节点或者不能添加该数字,然后就是普通数位dp了
#include<queue>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std; int read_p,read_ca;
inline int read(){
read_p=;read_ca=getchar();
while(read_ca<''||read_ca>'') read_ca=getchar();
while(read_ca>=''&&read_ca<='') read_p=read_p*+read_ca-,read_ca=getchar();
return read_p;
}
const int LO=,MOD=;
inline void M(int &ans){
if (ans>=MOD) ans-=MOD;
}
struct tree{
int f;
bool w;
int t[LO],v[LO];
}t[];
char s[],n,m,tt;
bool us[];
int map[][],f[][],ti[][];
int num=;
queue <int> q;
inline void in(){
int m=strlen(s),p=;
for (int i=;i<m;i++){
if (!t[p].t[s[i]-]) t[p].t[s[i]-]=++num;
p=t[p].t[s[i]-];
}
t[p].w=;
}
inline void mafa(){
q.push();int k,p;t[].f=;
while (!q.empty()){
k=q.front();q.pop();
for (int i=;i<LO;i++)
if (t[k].t[i]){
p=t[k].f;
while ((!t[p].t[i])&&p) p=t[p].f;
t[t[k].t[i]].f=(k==p)?:t[p].t[i];
q.push(t[k].t[i]);
}
}
}
inline void ro(){
int i,j,p;
for (i=;i<=num;i++)
for (j=;j<LO;j++)
if (t[i].t[j]) t[i].v[j]=t[i].t[j];else{
p=t[i].f;
while ((!t[p].t[j])&&p) p=t[p].f;
t[i].v[j]=t[p].t[j];
}
}
inline void dfs(int x){
if (us[x]) return;
us[x]=;
if (t[x].w) return;
dfs(t[x].f);
t[x].w|=t[t[x].f].w;
}
inline void ju(){
int i,j,k,p;
for (i=;i<=num;i++)
if (!t[i].w)
for (j=;j<;j++){
p=i;
for (k=;k>=;k--){
p=t[p].v[((<<k)&j)>];
if (t[p].w) break;
}
if (t[p].w) map[i][j]=-;else map[i][j]=p;
}
}
inline void FI(){
for (int i=;i<=num;i++) t[i].w=t[i].f=us[i]=;
for (int i=;i<=num;i++)
for (int j=;j<LO;j++)
t[i].t[j]=t[i].v[j]=;
num=;us[]=;
}
inline void add(){
int m=strlen(s),i;
for (i=m-;i>=;i--) if (s[i]!='') break;
if (i>=){
s[i]++;for (i++;i<m;i++) s[i]='';
}else{
s[]='';for (i=;i<=m;i++) s[i]='';s[m+]=;
}
}
inline int ss(int x,int y){
if (y==) return ;
if (ti[x][y]==tt) return f[x][y];
ti[x][y]=tt;
int ans=;
for (int i=;i<;i++) if (map[x][i]!=-)
M(ans+=ss(map[x][i],y-));
return f[x][y]=ans;
}
inline int an(){
int ans=;
int i,j,p,m=strlen(s);
for (i=;i<m;i++) s[i]-=;
for (i=;i<m;i++) for (j=;j<;j++) if (map[][j]!=-) M(ans+=ss(map[][j],i-));
for(i=;i<s[];i++)if(map[][i]!=-) M(ans+=ss(map[][i],m-));
p=map[][s[]];
for (i=;i<m&&p!=-;i++){
for (j=;j<s[i];j++) if (map[p][j]!=-) M(ans+=ss(map[p][j],m-i-));
p=map[p][s[i]];
}
return ans;
}
inline void work(){
int ans;
FI();
n=read();
for (int i=;i<=n;i++) scanf("%s",s),in();
mafa();for (int i=;i<=num;i++)dfs(i);ro();ju();
scanf("%s",s);ans=an();
scanf("%s",s);add();ans=an()-ans;
printf("%d\n",(ans<?ans+MOD:ans));
}
int main(){
for (tt=read();tt;tt--) work();
}

zoj 3494:BCD Code的更多相关文章

  1. ZOJ 3494 BCD Code(AC自动机+数位DP)

    BCD Code Time Limit: 5 Seconds      Memory Limit: 65536 KB Binary-coded decimal (BCD) is an encoding ...

  2. ZOJ 3494 BCD Code (AC自己主动机 + 数位DP)

    题目链接:BCD Code 解析:n个病毒串.问给定区间上有多少个转换成BCD码后不包括病毒串的数. 很奇妙的题目. . 经典的 AC自己主动机 + 数位DP 的题目. 首先使用AC自己主动机,得到b ...

  3. ZOJ 3494 BCD Code (数位DP,AC自动机)

    题意: 将一个整数表示成4个bit的bcd码就成了一个01串,如果该串中出现了部分病毒串,则是危险的.给出n个病毒串(n<=100,长度<21),问区间[L,R]中有几个数字是不含病毒串的 ...

  4. ZOJ 3494 BCD Code(AC自动机 + 数位DP)题解

    题意:每位十进制数都能转化为4位二进制数,比如9是1001,127是 000100100111,现在问你,在L到R(R <= $10^{200}$)范围内,有多少数字的二进制表达式不包含模式串. ...

  5. BCD Code ZOJ - 3494 AC自动机+数位DP

    题意: 问A到B之间的所有整数,转换成BCD Code后, 有多少个不包含属于给定病毒串集合的子串,A,B <=10^200,病毒串总长度<= 2000. BCD码这个在数字电路课上讲了, ...

  6. ZOJ 3494 (AC自动机+高精度数位DP)

    题目链接:  http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3494 题目大意:给定一些被禁止的BCD码.问指定范围内不含有 ...

  7. zoj3494 BCD Code(AC自动机+数位dp)

    Binary-coded decimal (BCD) is an encoding for decimal numbers in which each digit is represented by ...

  8. [ZOJ3494]BCD Code

    AC自动机+数位DP. 大致题意: BCD码就是把一个数十进制下的每一位分别用4位的二进制表示. 给你一坨01串,问你在一个区间内,有多少个数的BCD码不包含任何一个字符串. 因为涉及到多个串的匹配问 ...

  9. DP ZOJ 2745 01-K Code

    题目传送门 题意:要求任意连续子序列中0和1的数量差不超过k的方案数 分析:想好状态其实不难.dp[i][j][k]表示考虑前i长度,后缀中最大的 sum(0) - sum(1) = j, sum ( ...

随机推荐

  1. iOS 蓝牙开发资料记录

    一.蓝牙基础认识:   1.iOS蓝牙开发:  iOS蓝牙开发:蓝牙连接和数据读写   iOS蓝牙后台运行  iOS关于app连接已配对设备的问题(ancs协议的锅)          iOS蓝牙空中 ...

  2. UITableView的性能优化

    UITableView作为ios中使用最频繁的控件之一,其性能优化也是常常要面对的,尤其是当数据量偏大并且设备性能不足时.本文旨在总结tableview的几个性能优化tips,并且随着认识的深入,本文 ...

  3. laravel and lumen 软删除操作

    知识都是有联系的,这绝对是真理.作为一名小白,看了一点官方文档,把我自己理解的软删除操作给大家讲讲.有些就是套用官方文档的话. 定义:什么是软删除呢,所谓软删除指的是数据表记录并未真的从数据库删除,而 ...

  4. Spark源码剖析(五):Master原理与源码剖析(下)

    一. 状态改变机制源码分析 在剖析Master核心的资源调度算法之前,让我们先来看看Master的状态改变机制. Driver状态改变  可以看出,一旦Driver状态发生改变,基本没有好事情,后果要 ...

  5. lodash源码分析之Hash缓存

    在那小小的梦的暖阁,我为你收藏起整个季节的烟雨. --洛夫<灵河> 本文为读 lodash 源码的第四篇,后续文章会更新到这个仓库中,欢迎 star:pocket-lodash gitbo ...

  6. im4java包处理图片

    使用方法:首先要安装ImageMagick这个工具,安装好这个工具后,再下载im4java包放到项目lib目录里就行了.package com.stu.util; import java.io.IOE ...

  7. win10 音频服务未响应的解决方法

    最近在调试usb audio设备,由于使用的是自己的audio 设备,所以要频繁的更换采样率,可是 在win10中经常出现一些莫名其妙的问题,今天这个问题就是折腾了我好久才搞定的. 当把usb aud ...

  8. ThinkPHP使用阿里云通信短信服务

    一.下载SDK 目前给出的SDK版本有JAVA.PHP.Python三个版本,我们使用PHP版本 二.文档结构 将下载的PHP-SDK解压,放入tp框架的Library目录下 发送短信主要使用api_ ...

  9. js模块化规范

    1. CommonJS 用于服务端模块化编程,比如nodejs就采用此规范: 一个文件就是一个模块,require方法用来加载模块,该方法读取一个文件并执行,最后返回文件内部的module.expor ...

  10. golang 轮训加密算法

    Roy's friends has been spying on his text messages, so Roy thought of an algorithm to encrypt text m ...