2017多校联合第五场1001/hdu6085Rikka with Candies(bitset)

来源:互联网 发布:seafile数据是否加密 编辑:程序博客网 时间:2024/06/07 21:56

Rikka with Candies

Time Limit: 7000/3500 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1389    Accepted Submission(s): 606


Problem Description
As we know, Rikka is poor at math. Yuta is worrying about this situation, so he gives Rikka some math tasks to practice. There is one of them:

There are n children and m kinds of candies. The ith child has Ai dollars and the unit price of the ith kind of candy is Bi. The amount of each kind is infinity. 

Each child has his favorite candy, so he will buy this kind of candies as much as possible and will not buy any candies of other kinds. For example, if this child has 10dollars and the unit price of his favorite candy is 4 dollars, then he will buy two candies and go home with 2 dollars left.

Now Yuta has q queries, each of them gives a number k. For each query, Yuta wants to know the number of the pairs (i,j)(1in,1jm) which satisfies if the ith child’s favorite candy is the jth kind, he will take k dollars home.

To reduce the difficulty, Rikka just need to calculate the answer modulo 2.

But It is still too difficult for Rikka. Can you help her?
 

Input
The first line contains a number t(1t5), the number of the testcases. 

For each testcase, the first line contains three numbers n,m,q(1n,m,q50000)

The second line contains n numbers Ai(1Ai50000) and the third line contains m numbers Bi(1Bi50000).

Then the fourth line contains q numbers ki(0ki<maxBi) , which describes the queries.

It is guaranteed that AiAj,BiBj for all ij.
 

Output
For each query, print a single line with a single 01 digit -- the answer.
 

Sample Input
15 5 51 2 3 4 51 2 3 4 50 1 2 3 4
 

Sample Output
00001
 

Source
2017 Multi-University Training Contest - Team 5
 

Recommend
liuyiding   |   We have carefully selected several similar problems for you:  6107 6106 6105 6104 6103 
 

Statistic | Submit | Discuss | Note
题意:A数组n个数,B数组m个数,q个查询, 每次给出一个k,询问有多少对(i,j), 使得Ai % Bj = k, 输出对数对模2的值 

题解:

k,bj>k,ai>=k,ai%bj=k 
bbi={i>kb[1...m]} 
k=ni=1bbaik 
bitseta,bitsetA>>kak,<0 
bitsetBB[i]=bbi & 1 
ans[k]=(bitsetA>>k) & bitsetBB.count() & 1

bb,bi,,O(N1bi) 
N=O(NNi=11N)O(Nln(N+1)) 
k,bitsetAbitsetBBandO(N232) 
O(N232+Nln(N+1))

#include <iostream>#include <algorithm>#include <cstdio>#include <cmath>#include <cstring>#include <string>#include <string.h>#include <map>#include <set>#include <queue>#include <deque>#include <list>#include <bitset>#include <stack>#include <stdlib.h>#define lowbit(x) (x&-x)#define e exp(1.0)//ios::sync_with_stdio(false);//    auto start = clock();//    cout << (clock() - start) / (double)CLOCKS_PER_SEC;typedef long long ll;typedef long long LL;using namespace std;int read(){    int res = 0, ch, flag = 0;        if((ch = getchar()) == '-')             //判断正负        flag = 1;        else if(ch >= '0' && ch <= '9')           //得到完整的数        res = ch - '0';    while((ch = getchar()) >= '0' && ch <= '9' )        res = res * 10 + ch - '0';        return flag ? -res : res;}const int maxn=50000+10;bitset<maxn>a,b,ans;bitset<maxn>bb;//b的倍数,bb[i]=1:有奇数个y满足i%b[y]==0void solve(int maxk){    bb.reset();    ans.reset();    for(int i=maxk;i>=0;--i)//枚举k    {        ans[i]=(bb&(a>>i)).count()&1;        if(b[i])//枚举b[i]的倍数            for(int j=0;j<maxn;j+=i)                bb.flip(j);    }}int main(){    ios::sync_with_stdio(false);    int T;    scanf("%d",&T);//cin>>T;    int n,m,q;    while(T--)    {        scanf("%d%d%d",&n,&m,&q);//cin>>n>>m>>q;        a.reset();        b.reset();        int maxk=0;        for(int i=0;i<n;i++)        {            int x;            scanf("%d",&x);//cin>>x;            a.set(x);        }        for(int i=0;i<m;i++)        {            int x;            scanf("%d",&x);//cin>>x;            b.set(x);            maxk=max(maxk,x);        }        solve(maxk);        while(q--)        {            int x;            scanf("%d",&x);//cin>>x;            if(ans[x])puts("1");//cout<<"1"<<endl;            else puts("0");//cout<<"0"<<endl;        }    }    return 0;}


原创粉丝点击