Creating Strings II

Given a string, your task is to calculate the number of different strings that can be created using its characters.

Example:

Input:  s = "aabac"
Output: 20

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 longfactinvf;

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

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

long long creatingStringII(string s)
{

    int n = s.size();
    map<charintmp;
    for (char c : s)
        mp[c]++;
    long long ans = fact[n];
    for (auto it = mp.begin(); it != mp.end(); it++)
        ans = ans * invf[it->second] % MOD;
    return ans;
}

int main()
{
    string s = "aabac";

    precompute(1e6);

    cout << creatingStringII(s<< "\n";

    return 0;
}


No comments:

Post a Comment