ACWINGS 214 Devu and Flowers

思路:多重集的组合,有公式在这里插入图片描述

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
typedef long long ll;
const int maxn = 30;
ll a[maxn];
const int mod = 1e9+7;

int inv[20], n;

int power(int a, int b)
{
    int c = 1;
    for(;b;b>>=1)
    {
        if(b&1) c= (long long )c*a %mod;
        a = (long long )a*a %mod;

    }
    return c;
}



int C(ll n, int r)
{
    if(n<0|| r<0 ||n<r)return 0;
    n%=mod;
    if(n== 0 ||r== 0) return 1;
    ll ans = 1;
    for(int i =0;i<r;i++)
        ans = ans *(n-i) %mod;
    for(int i = 1;i<=r; i++)
        ans = ans *inv[i]%mod;
    return ans;
}

int main()
{
    int n,m;
    for(int i =1;i<=20;i++)
        inv[i] =  power(i, mod-2);
    cin>>n>>m;
    for(int i = 0;i<n;i++)cin>>a[i];
    ll ans = 0;
    for(int i = 0;i<(1<<n);i++)
    {
         ll cnt =0;
         ll temp = n+m;
         for(int j = 0;j<n;j++)
         {
             if(i&(1<<j))
             {
                 cnt++;
                 temp -= a[j];
             }
         }
         temp = temp - cnt-1;
         if(cnt%2==0)
         {
             ans = (ans + C(temp, n-1))%mod;
         }
         else
         {
             ans  = (ans - C(temp, n-1))%mod;
         }
    }

    cout<< (ans +mod)%mod<<endl;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值