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 () bits of each of () of these secret binary messages.
He has compiled a list of () partial codewords that he thinks the cows are using. Sadly, he only knows the first () bits of codeword .
For each codeword , he wants to know how many of the intercepted messages match that codeword (i.e., for codeword , 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 and the ) will not exceed .
INPUT FORMAT
Line : Two integers: and .
Lines : Line describes intercepted code with an integer followed by space-separated 0‘s and 1‘s.
Lines : Line describes codeword with an integer followed by space-separated 0‘s and 1‘s.
OUTPUT FORMAT
Lines : Line : The number of messages that the -th codeword could match.
int trie[N][2], cnt[N], ed[N], tot; voidinsert(bool *val, int n) { int u = 0; for (int i = 1; i <= n; i++) { int c = val[i]; if (!trie[u][c]) trie[u][c] = ++tot; u = trie[u][c]; ++cnt[u]; } ++ed[u]; }
intquery(bool *val, int n) { int res = 0; int u = 0; for (int i = 1; i <= n; i++) { int c = val[i]; if (!trie[u][c]) return res; u = trie[u][c]; res += ed[u]; } return res - ed[u] + cnt[u]; }
int m, n, k; bool a[N];
intmain() { scanf("%d%d", &m, &n); for (int i = 1; i <= m; i++) { scanf("%d", &k); for (int j = 1; j <= k; j++) scanf("%d", &a[j]); insert(a, k); } for (int i = 1; i <= n; i++) { scanf("%d", &k); for (int j = 1; j <= k; j++) scanf("%d", &a[j]); printf("%d\n", query(a, k)); } return0; }