D. The Wu
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Childan is making up a legendary story and trying to sell his forgery — a necklace with a strong sense of "Wu" to the Kasouras. But Mr. Kasoura is challenging the truth of Childan's story. So he is going to ask a few questions about Childan's so-called "personal treasure" necklace.

This "personal treasure" is a multiset SS of mm "01-strings".

A "01-string" is a string that contains nn characters "0" and "1". For example, if n=4n=4, strings "0110", "0000", and "1110" are "01-strings", but "00110" (there are 55 characters, not 44) and "zero" (unallowed characters) are not.

Note that the multiset SS can contain equal elements.

Frequently, Mr. Kasoura will provide a "01-string" tt and ask Childan how many strings ss are in the multiset SS such that the "Wu" value of the pair (s,t)(s,t) is not greater than kk.

Mrs. Kasoura and Mr. Kasoura think that if si=tisi=ti (1≤i≤n1≤i≤n) then the "Wu" value of the character pair equals to wiwi, otherwise 00. The "Wu" value of the "01-string" pair is the sum of the "Wu" values of every character pair. Note that the length of every "01-string" is equal to nn.

For example, if w=[4,5,3,6]w=[4,5,3,6], "Wu" of ("1001", "1100") is 77 because these strings have equal characters only on the first and third positions, so w1+w3=4+3=7w1+w3=4+3=7.

You need to help Childan to answer Mr. Kasoura's queries. That is to find the number of strings in the multiset SS such that the "Wu" value of the pair is not greater than kk.

Input

The first line contains three integers nn, mm, and qq (1≤n≤121≤n≤12, 1≤q,m≤5⋅1051≤q,m≤5⋅105) — the length of the "01-strings", the size of the multiset SS, and the number of queries.

The second line contains nn integers w1,w2,…,wnw1,w2,…,wn (0≤wi≤1000≤wi≤100) — the value of the ii-th caracter.

Each of the next mm lines contains the "01-string" ss of length nn — the string in the multiset SS.

Each of the next qq lines contains the "01-string" tt of length nn and integer kk (0≤k≤1000≤k≤100) — the query.

Output

For each query, print the answer for this query.

Examples
input

Copy
2 4 5
40 20
01
01
10
11
00 20
00 40
11 20
11 40
11 60
output

Copy
2
4
2
3
4
input

Copy
1 2 4
100
0
1
0 0
0 100
1 0
1 100
output

Copy
1
2
1
2
Note

In the first example, we can get:

"Wu" of ("01", "00") is 4040.

"Wu" of ("10", "00") is 2020.

"Wu" of ("11", "00") is 00.

"Wu" of ("01", "11") is 2020.

"Wu" of ("10", "11") is 4040.

"Wu" of ("11", "11") is 6060.

In the first query, pairs ("11", "00") and ("10", "00") satisfy the condition since their "Wu" is not greater than 2020.

In the second query, all strings satisfy the condition.

In the third query, pairs ("01", "11") and ("01", "11") satisfy the condition. Note that since there are two "01" strings in the multiset, the answer is 22, not 11.

In the fourth query, since kk was increased, pair ("10", "11") satisfies the condition too.

In the fifth query, since kk was increased, pair ("11", "11") satisfies the condition too.

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>
#include<algorithm>
#define MAX 500005
#define INF 0x3f3f3f3f
#define MOD 1000000007
using namespace std;
typedef long long ll; int a[MAX];
char s[MAX][];
char ss[];
ll dp[(<<)+][];
int b[(<<)+]; int main()
{
int n,m,q,x,i,j,k;
scanf("%d%d%d",&n,&m,&q);
for(i=;i<n;i++){
scanf("%d",&a[i]);
}
for(i=;i<m;i++){
scanf(" %s",s[i]);
}
for(i=;i<m;i++){
ll S=;
for(j=;j<n;j++){
if(s[i][j]=='') S|=<<j;
}
b[S]++;
}
for(i=;i<(<<n);i++){
for(j=;j<(<<n);j++){
if(!b[j]) continue;
int sum=;
for(k=;k<n;k++){
if((i&(<<k))==(j&(<<k))) sum+=a[k];
}
if(sum>) continue;
dp[i][sum]+=b[j];
}
} while(q--){
scanf(" %s %d",ss,&x);
ll S=;
for(i=;i<n;i++){
if(ss[i]=='') S|=<<i;
}
ll ans=;
for(i=;i<=x;i++){
ans+=dp[S][i];
}
printf("%I64d\n",ans);
}
return ;
}

最新文章

  1. 【MVVM Light】Messager的使用
  2. Java基础语法总结1
  3. JAVA-android 更改APP名称与图标
  4. IOS NSDate NSDateFormatter 导致相差8小时
  5. Java中Filter、Servlet、Listener的学习
  6. java基础练习 2
  7. Struts2第四天
  8. [Python] Spark平台下实现分布式AC自动机(一)
  9. webpack 单独打包指定JS文件(CopyWebpackPlugin)
  10. SpringBoot入门教程(十三)CORS方式实现跨域
  11. postgresql 自定义函数
  12. [Basics] 递归
  13. Guava之计时器Stopwatch
  14. 两个int(32位)整数m和n的二进制表达中,有多少个位(bit)不同
  15. Expo大作战(五)--expo中app.json 文件的配置信息
  16. angula学习
  17. Python判断操作系统类型
  18. synchronized一个(二)
  19. Camera帧率和AE的关系
  20. Fatal error: Call-time pass-by-reference has been removed in *****.php on line 18

热门文章

  1. N皇后问题算法
  2. 列举你了解的Python较其他语言的优势
  3. 转 Spring 组件 &lt;context:component-scan base-pakage=&quot;&quot;&gt;用法
  4. mongo简介
  5. WPF区时浏览小程序
  6. BZOJ 3990 [SDOI2015]排序
  7. EASYARM-IMX283 烧写uboot和linux系统
  8. POJ3693 Maximum repetition substring —— 后缀数组 重复次数最多的连续重复子串
  9. HDU2296 Ring —— AC自动机 + DP
  10. Spring Boot2.0之 监控管理