题目描述

Bessie is leading the cows in an attempt to escape! To do this, the cows are sending secret binary messages to each other.

Ever the clever counterspy, Farmer John has intercepted the first b_i (1 <= b_i <= 10,000) bits of each of M (1 <= M <= 50,000) of these secret binary messages.

He has compiled a list of N (1 <= N <= 50,000) partial codewords that he thinks the cows are using. Sadly, he only knows the first c_j (1 <= c_j <= 10,000) bits of codeword j.

For each codeword j, he wants to know how many of the intercepted messages match that codeword (i.e., for codeword j, how many times does a message and the codeword have the same initial bits). Your job is to compute this number.

The total number of bits in the input (i.e., the sum of the b_i and the c_j) will not exceed 500,000.

Memory Limit: 32MB

POINTS: 270

贝茜正在领导奶牛们逃跑.为了联络,奶牛们互相发送秘密信息.

信息是二进制的,共有M(1≤M≤50000)条.反间谍能力很强的约翰已经部分拦截了这些信息,知道了第i条二进制信息的前bi(l《bi≤10000)位.他同时知道,奶牛使用N(1≤N≤50000)条密码.但是,他仅仅了解第J条密码的前cj(1≤cj≤10000)位.

对于每条密码J,他想知道有多少截得的信息能够和它匹配.也就是说,有多少信息和这条密码有着相同的前缀.当然,这个前缀长度必须等于密码和那条信息长度的较小者.

在输入文件中,位的总数(即∑Bi+∑Ci)不会超过500000.

输入输出格式

输入格式:

  • Line 1: Two integers: M and N

  • Lines 2..M+1: Line i+1 describes intercepted code i with an integer b_i followed by b_i space-separated 0's and 1's

  • Lines M+2..M+N+1: Line M+j+1 describes codeword j with an integer c_j followed by c_j space-separated 0's and 1's

输出格式:

  • Lines 1..M: Line j: The number of messages that the jth codeword could match.

输入输出样例

输入样例#1:

4 5
3 0 1 0
1 1
3 1 0 0
3 1 1 0
1 0
1 1
2 0 1
5 0 1 0 0 1
2 1 1
输出样例#1:

1
3
1
1
2

说明

Four messages; five codewords.

The intercepted messages start with 010, 1, 100, and 110.

The possible codewords start with 0, 1, 01, 01001, and 11.

0 matches only 010: 1 match

1 matches 1, 100, and 110: 3 matches

01 matches only 010: 1 match

01001 matches 010: 1 match

11 matches 1 and 110: 2 matches

trie树

屠龙宝刀点击就送

#include <cstring>
#include <cstdio>
#define N 200000 int a[N],m,n,num[N],cnt[N],end[N],trie[N][],fail[N],siz=;
inline void ins(int L)
{
int p=;
for(int i=;i<=L;++i)
{
if(!trie[p][a[i]]) trie[p][a[i]]=++siz;
p=trie[p][a[i]];
cnt[p]++;
}
end[p]++;
}
int query(int L)
{
int p=,ans=,f=;
for(int i=;i<=L;++i)
{
p=trie[p][a[i]];
if(!p) {f=;break;}
ans+=end[p];
}
if(!f) return ans+cnt[p]-end[p];
else return ans;
}
int main()
{
scanf("%d%d",&m,&n);
for(int l,i=;i<=m;++i)
{
scanf("%d",&l);
for(int j=;j<=l;++j) scanf("%d",&a[j]);
ins(l);
}
for(int l;n--;)
{
scanf("%d",&l);
for(int i=;i<=l;++i) scanf("%d",&a[i]);
printf("%d\n",query(l));
}
return ;
}

最新文章

  1. C++ 系列:继承
  2. Android 手势识别类 ( 三 ) GestureDetector 源码浅析
  3. java 中多线程和锁的使用
  4. 压缩和解压缩gz包
  5. jquery中简易tab切换
  6. VirtualBox Headless启动虚拟机
  7. [React Native] Passing data when changing routes
  8. 安装了VS2010 sp1 后再安装ASP.NET MVC 3.0的问题(Final Result: Installation failed with error code: (0x80070643), &quot;安装时发生严重错误 &quot; (Ela)
  9. express框架+jade+bootstrap+mysql开发用户注册登录项目
  10. HTML &lt;a href &gt;标签的target属性
  11. rabbitMQ学习3-RPC远程过程调用
  12. matalb 产生信号源 AM调制解调 FM调制解调
  13. bzoj 2301
  14. Codeforces Round #FF (Div. 2) D. DZY Loves Modification 优先队列
  15. 虚拟机 django 端口无法连接
  16. SolrCloud集群配置
  17. C# 多线程七之Parallel
  18. 各jQuery选择器的用法(转)
  19. linux的文件类型和权限
  20. 关于Angular中时间戳的计算

热门文章

  1. const用在成员函数之后的情况
  2. 3.19 YARN HA架构及(RM/NM) Restart讲解
  3. 爬虫代码实现六-Queue队列实现循环抓取
  4. Number()、parseInt()、parseFloat()的区别:
  5. 解决“System.Data.OracleClient需要Oracle客户端软件8.1.7或更高版本”
  6. E20180615-hm
  7. lightoj1010【LCS】
  8. C# interface 的特性 无法被implement class继承
  9. IT兄弟连 JavaWeb教程 EL表达式中的运算
  10. IT兄弟连 JavaWeb教程 JavaBean组件定义