牛客练习赛53-C( 富豪凯匹配串)

牛客练习赛53-C( 富豪凯匹配串)

传送门

//使用bitset优化一下~
#include
using namespace std;
const int N=1009;

int n,m;
string s;
bitset<N>a[N],s1,s2;


int main()
{
    ios::sync_with_stdio(false);
    cin>>n>>m;
    for(int i=1;i<=n;i++){
        cin>>s;
        for(int j=0;j<m;j++){
            if(s[j]=='1'){
                a[i][j]=1;
            } else a[i][j]=0;
        }
    }
    int q;cin>>q;
    while(q--){
        cin>>s;
        for(int i=0;i<m;i++){
            if(s[i]=='1'){
                s1[i]=1;
                s2[i]=1;
            } else if(s[i]=='0'){
                s1[i]=1;
                s2[i]=0;
            } else {
                s1[i]=0;
                s2[i]=0;
            }
        }
        int ans=0;
        for(int i=1;i<=n;i++){
            if((a[i]&s1)==s2)ans++;
        }
        cout<<ans<<'\n';
    }
    return 0;
}

你可能感兴趣的:(思维)