Distributing Apples

There are n children and apples that will be distributed to them. Your task is to count the number of ways this can be done.

For example, if  and , there are 6 ways:  and .

Example:

Input:  n = 3, m = 2
Output: 6

Approach

C++

#include <bits/stdc++.h>
using namespace std;

const long long MOD = 1e9 + 7;

long long qexp(long long along long blong long m)
{
    long long res = 1;
    while (b)
    {
        if (b % 2)
            res = res * a % m;
        a = a * a % m;
        b /= 2;
    }
    return res;
}

vector<long longfact;

void precompute(int n)
{
    fact.assign(n + 11);
    for (int i = 1i <= ni++)
        fact[i] = fact[i - 1] * i % MOD;
}

long long nCk(int nint k)
{
    if (k < 0 || k > n)
        return 0;
    return fact[n] * qexp(fact[k]MOD - 2MOD) % MOD * qexp(fact[n - k]MOD - 2MOD) % MOD;
}

long long distributingApples(int nint m)
{

    return nCk(n + m - 1m);
}

int main()
{

    int n = 3m = 2;

    precompute(2e6);

    cout << distributingApples(nm<< "\n";

    return 0;
}


No comments:

Post a Comment