首页 > 代码库 > 【BZOJ】1590: [Usaco2008 Dec]Secret Message 秘密信息
【BZOJ】1590: [Usaco2008 Dec]Secret Message 秘密信息
Description
贝茜正在领导奶牛们逃跑.为了联络,奶牛们互相发送秘密信息.
信息是二进制的,共有M(1≤M≤50000)条.反间谍能力很强的约翰已经部分拦截了这些信息,知道了第i条二进制信息的前bi(l《bi≤10000)位.他同时知道,奶牛使用N(1≤N≤50000)条密码.但是,他仅仅了解第J条密码的前cj(1≤cj≤10000)位.
对于每条密码J,他想知道有多少截得的信息能够和它匹配.也就是说,有多少信息和这条密码有着相同的前缀.当然,这个前缀长度必须等于密码和那条信息长度的较小者.
在输入文件中,位的总数(即∑Bi+∑Ci)不会超过500000.
Input
第1行输入N和M,之后N行描述秘密信息,之后M行描述密码.每行先输入一个整数表示信息或密码的长度,之后输入这个信息或密码.所有数字之间都用空格隔开.
Output
共M行,输出每条密码的匹配信息数.
Sample Input
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
INPUT DETAILS:
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.
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
INPUT DETAILS:
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.
Sample Output
1
3
1
1
2
3
1
1
2
题解:
字典树,找前缀,记录位置
#include <cstdio> #include <cstring> const int MAXN=500001;struct node { int s; int link[2]; }t[MAXN]; int ans; int nt; int n,m; int sum[MAXN];void add(int len) { int x; int ansm=0; int p=0; for(int i=1;i<=len;i++) { scanf("%d",&x); int zz=x; if(t[p].link[zz]==0) t[p].link[zz]=++nt; p=t[p].link[zz]; sum[p]++; } t[p].s++; } int Query(int len){ int x; int ans=0; int p=0; for(int i=1;i<=len;i++) { scanf("%d",&x); int zz=x; if(!t[p].link[zz]) { for(i=i+1;i<=len;i++) scanf("%d",&x); return ans; } p=t[p].link[x]; ans+=t[p].s; } return ans-t[p].s+sum[p];}int main() { char z[100]=""; scanf("%d%d",&n,&m); int x; for(int i=1;i<=n;i++) { scanf("%d",&x); add(x); } for(int i=1;i<=m;i++) { scanf("%d",&x),printf("%d\n",Query(x)); }}
【BZOJ】1590: [Usaco2008 Dec]Secret Message 秘密信息
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。