2023牛客暑期多校训练营7 I We Love Strings

https://ac.nowcoder.com/acm/contest/57361/I

分治,容斥原理

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
const ll mod = 998244353;
int main(){
    ios::sync_with_stdio(false);
	cin.tie(0);
    cout.tie(0);
    ll n;
    cin>>n;
    vector<string> a[405];
    for(int i=1;i<=n;i++){
        string s;
        cin>>s;
        a[s.size()].push_back(s);
    }
    ll ans=0;
    for(int i=1;i<=400;i++){
        int num=a[i].size();
        if(i<=20){
            for(int j=0;j<(1<<i);j++){
                for(int k=0;k<num;k++){
                    int book=1;
                    for(int t=0;t<i;t++){
                        if(a[i][k][t]!='?'&&((j>>t)&1)!=a[i][k][t]-'0'){
                            book=0;
                            break;
                        }
                    }
                    if(book){
                        ans=(ans+1)%mod;
                        break;
                    }
                }
            }
        }
        else{
            for(int j=1;j<(1<<num);j++){
                ll cnt=1,cntj1=0;
                for(int t=0;t<i;t++){
                    int book0=0,book1=0;
                    for(int k=0;k<num;k++){
                        if(((j>>k)&1)==1){
                            if(t==0) cntj1++;
                            if(a[i][k][t]=='0') book0=1;
                            if(a[i][k][t]=='1') book1=1;
                        }
                    }
                    if(book0&&book1){
                        cnt=0;
                        break;
                    }
                    if(book0==0&&book1==0){
                        cnt=cnt*2%mod;
                    }
                }
                if(cntj1%2){
                    ans=(ans+cnt)%mod;
                    //cout<<" + "<<ans<<endl;
                }
                else{
                    //cout<<" - "<<ans<<endl;
                    ans=(ans-cnt+mod)%mod;
                }
                
            }
        }
    }
    cout<<ans;
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值