Codeforces1545 B. AquaMoon and Chess(思维+组合数学)

Posted live4m

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces1545 B. AquaMoon and Chess(思维+组合数学)相关的知识,希望对你有一定的参考价值。

题意:

解法:

011可以变为110,
110可以变为011,
观察发现可以将移动看作是两个1同时左移或者两个1同时右移.
我们可以将连续的两个1看作一组:
111看作111,

假设有c2组,有c0个空位,
那么可以看作是有c2+c0个位置,需要选出c2个位置,
方案数为C(c2+c0,c2).

code:

#include<bits/stdc++.h>
#define MULTI_CASE
#define PI pair<int,int>
// #define int long long
using namespace std;
const int mod=998244353;
// const int mod=1e9+7;
const int maxm=2e6+5;
char s[maxm];
int n;
int fac[maxm],inv[maxm];
int ppow(int a,int b,int mod){
int ans=1%mod;a%=mod;
while(b){if(b&1)ans=1ll*ans*a%mod;a=1ll*a*a%mod;b>>=1;}
return ans;
}
int C(int n,int m){
   if(m<0||m>n)return 0;
   return 1ll*fac[n]*inv[m]%mod*inv[n-m]%mod;
}
void C_init(){
   fac[0]=1;
   for(int i=1;i<maxm;i++)fac[i]=1ll*fac[i-1]*i%mod;
   inv[maxm-1]=ppow(fac[maxm-1],mod-2,mod);
   for(int i=maxm-2;i>=0;i--)inv[i]=1ll*inv[i+1]*(i+1)%mod;
}
void solve(){
    cin>>n;
    cin>>(s+1);
    for(int i=1;i<=n;i++)s[i]-='0';
    int c0=0,c2=0;
    for(int i=1;i<=n;i++){
        if(s[i]){
            if(i+1<=n&&s[i+1]){
                c2++;
                i++;
            }
        }else{
            c0++;
        }
    }
    int ans=C(c2+c0,c2);
    cout<<ans<<endl;
}
void Main(){
    C_init();
    #ifdef MULTI_CASE
    int T;cin>>T;while(T--)
    #endif
    solve();
}
void Init(){
    ios::sync_with_stdio(0);cin.tie(0);
    #ifndef ONLINE_JUDGE
    freopen("../in.txt","r",stdin);
    freopen("../out.txt","w",stdout);
    #endif
}
signed main(){
    Init();
    Main();
    return 0;
}

以上是关于Codeforces1545 B. AquaMoon and Chess(思维+组合数学)的主要内容,如果未能解决你的问题,请参考以下文章

[codeforces 260]B. Ancient Prophesy

codeforces 655B B. Mischievous Mess Makers(贪心)

codeforces 653B B. Bear and Compressing(dfs)

Codeforces Round #352 (Div. 2) B. Different is Good

CodeForces B. Obtaining the String

Codeforces 1099 B. Squares and Segments-思维(Codeforces Round #530 (Div. 2))