📌  相关文章
📜  通过在原始字符串插入 K 个字符来计算不同字符串的数量

📅  最后修改于: 2021-09-03 03:46:26             🧑  作者: Mango

给定一个字符串S和一个整数K ,任务是找到可以通过在字符串S 的任何位置插入恰好K 个字符形成的字符串总数。由于答案可能很大,将其打印为模10 9 +7
例子:

方法:
这个想法是找到包含str作为子序列的字符串的数量。请按照以下步骤解决问题:

  1. 可以由N 个字符组成的字符串总数为26 N
  2. 使用二进制求幂计算 26 N。
  3. 在这个问题中,只需要考虑包含str作为子序列的字符串。
  4. 因此,字符串的最终计数由下式给出
  5. 在计算不包含str作为子序列的此类字符串,请注意S前缀长度是结果字符串,可以在0 到 |S|-1 之间
  6. 对于从0 到 |S|-1 的每个前缀长度,找出可以用这样的前缀作为子序列形成的字符串总数。然后从26 N 中减去该值。
  7. 因此,最终的答案是:

下面是上述方法的实现:

C++
// C++ program for the above approach
#include 
using namespace std;
#define int long long int
const int mod = 1e9 + 7;
  
// Function to calculate and return
// x^n in log(n) time using
// Binary Exponentiation
int binExp(int base, int power)
{
    int x = 1;
    while (power) {
        if (power % 2 == 1)
            x = ((x % mod)
                 * (base % mod))
                % mod;
  
        base = ((base % mod)
                * (base % mod))
               % mod;
        power = power / 2;
    }
    return x;
}
  
// Function to calculate the factorial
// of a number
int fact(int num)
{
    int result = 1;
  
    for (int i = 1; i <= num; ++i) {
  
        result = ((result % mod)
                  * (i % mod))
                 % mod;
    }
  
    return result;
}
  
// Function to calculate combination
int calculate_nCi(int N, int i)
{
    // nCi = ( n! ) / (( n-i )! * i!)
    int nfact = fact(N);
    int ifact = fact(i);
    int dfact = fact(N - i);
  
    // Using Euler's theorem of Modular
    // multiplicative inverse to find
    // the inverse of a number.
    // (1/a)%mod=a^(m?2)%mod
    int inv_ifact = binExp(ifact, mod - 2);
    int inv_dfact = binExp(dfact, mod - 2);
  
    int denm
        = ((inv_ifact % mod)
           * (inv_dfact % mod))
          % mod;
  
    int answer = ((nfact % mod)
                  * (denm % mod))
                 % mod;
    return answer;
}
  
// Function to find the count of
// possible strings
void countSubstring(int N, int s, int k)
{
    // Number of ways to form all
    // possible strings
    int allWays = binExp(26, N);
  
    // Number of ways to form strings
    // that don't contain the input
    // string as a subsequence
    int noWays = 0;
  
    // Checking for all prefix length
    // from 0 to |S|-1.
    for (int i = 0; i < s; ++i) {
        // to calculate nCi
        int nCi = calculate_nCi(N, i);
  
        // Select the remaining characters
        // 25 ^ (N-i)
        int remaining = binExp(25, N - i);
  
        int multiply
            = ((nCi % mod)
               * (remaining % mod))
              % mod;
  
        // Add the answer for this prefix
        // length to the final answer
        noWays = ((noWays % mod)
                  + (multiply % mod))
                 % mod;
    }
  
    // Answer is the difference of
    // allWays and noWays
    int answer = ((allWays % mod)
                  - (noWays % mod))
                 % mod;
  
    if (answer < 0)
        answer += mod;
  
    // Print the answer
    cout << answer;
}
  
// Driver Code
int32_t main()
{
    string str = "abc";
    int k = 2;
    int s = str.length();
  
    int N = s + k;
  
    countSubstring(N, s, k);
}


Java
// Java program for the above approach
class GFG{
  
static final long mod = 1000000007;
  
// Function to calculate and return
// x^n in log(n) time using
// Binary Exponentiation
static long binExp(long base, long power)
{
    long x = 1;
    while (power != 0)
    {
        if (power % 2 == 1)
            x = ((x % mod) * 
              (base % mod)) % mod;
  
        base = ((base % mod) *
                (base % mod)) % mod;
        power = power / 2;
    }
    return x;
}
  
// Function to calculate the factorial
// of a number
static long fact(long num)
{
    long result = 1;
  
    for(long i = 1; i <= num; ++i) 
    {
        result = ((result % mod) * 
                       (i % mod)) % mod;
    }
    return result;
}
  
// Function to calculate combination
static long calculate_nCi(long N, long i)
{
      
    // nCi = ( n! ) / (( n-i )! * i!)
    long nfact = fact(N);
    long ifact = fact(i);
    long dfact = fact(N - i);
  
    // Using Euler's theorem of Modular
    // multiplicative inverse to find
    // the inverse of a number.
    // (1/a)%mod=a^(m?2)%mod
    long inv_ifact = binExp(ifact, mod - 2);
    long inv_dfact = binExp(dfact, mod - 2);
  
    long denm = ((inv_ifact % mod) * 
                 (inv_dfact % mod)) % mod;
  
    long answer = ((nfact % mod) *
                    (denm % mod)) % mod;
    return answer;
}
  
// Function to find the count of
// possible strings
static void countSubstring(long N, long s, long k)
{
      
    // Number of ways to form all
    // possible strings
    long allWays = binExp(26, N);
  
    // Number of ways to form strings
    // that don't contain the input
    // string as a subsequence
    long noWays = 0;
  
    // Checking for all prefix length
    // from 0 to |S|-1.
    for(long i = 0; i < s; ++i) 
    {
          
        // To calculate nCi
        long nCi = calculate_nCi(N, i);
  
        // Select the remaining characters
        // 25 ^ (N-i)
        long remaining = binExp(25, N - i);
  
        long multiply = ((nCi % mod) *
                   (remaining % mod)) % mod;
  
        // Add the answer for this prefix
        // length to the final answer
        noWays = ((noWays % mod) +
                (multiply % mod)) % mod;
    }
  
    // Answer is the difference of
    // allWays and noWays
    long answer = ((allWays % mod) - 
                    (noWays % mod)) % mod;
  
    if (answer < 0)
        answer += mod;
  
    // Print the answer
    System.out.println(answer);
}
      
// Driver code    
public static void main(String[] args) 
{
    String str = "abc";
    long k = 2;
    long s = str.length();
    long N = s + k;
      
    countSubstring(N, s, k);
}
}
  
// This code is contributed by rutvik_56


Python3
# Python3 program for the above approach
mod = 1000000007
  
# Function to calculate and return
# x^n in log(n) time using
# Binary Exponentiation
def binExp(base, power):
  
    x = 1
    while (power):
        if (power % 2 == 1):
            x = (((x % mod) * 
               (base % mod)) % mod)
  
        base = (((base % mod) * 
                 (base % mod)) % mod)
        power = power // 2
      
    return x
  
# Function to calculate the factorial
# of a number
def fact(num):
  
    result = 1
  
    for i in range(1, num + 1):
        result = (((result % mod) * 
                        (i % mod)) % mod)
                          
    return result
  
# Function to calculate combination
def calculate_nCi(N, i):
  
    # nCi = ( n! ) / (( n-i )! * i!)
    nfact = fact(N)
    ifact = fact(i)
    dfact = fact(N - i)
  
    # Using Euler's theorem of Modular
    # multiplicative inverse to find
    # the inverse of a number.
    # (1/a)%mod=a^(m?2)%mod
    inv_ifact = binExp(ifact, mod - 2)
    inv_dfact = binExp(dfact, mod - 2)
  
    denm = (((inv_ifact % mod) * 
             (inv_dfact % mod)) % mod)
  
    answer = (((nfact % mod) * 
                (denm % mod)) % mod)
                  
    return answer
  
# Function to find the count of
# possible strings
def countSubstring(N, s, k):
  
    # Number of ways to form all
    # possible strings
    allWays = binExp(26, N)
  
    # Number of ways to form strings
    # that don't contain the input
    # string as a subsequence
    noWays = 0
  
    # Checking for all prefix length
    # from 0 to |S|-1.
    for i in range(s):
          
        # To calculate nCi
        nCi = calculate_nCi(N, i)
  
        # Select the remaining characters
        # 25 ^ (N-i)
        remaining = binExp(25, N - i)
  
        multiply = (((nCi % mod) * 
              (remaining % mod)) % mod)
  
        # Add the answer for this prefix
        # length to the final answer
        noWays =(((noWays % mod) + 
                (multiply % mod)) % mod)
      
    # Answer is the difference of
    # allWays and noWays
    answer = (((allWays % mod) - 
               (noWays % mod)) % mod)
  
    if (answer < 0):
        answer += mod
  
    # Print the answer
    print(answer)
  
# Driver Code
if __name__ == "__main__":
  
    st = "abc"
    k = 2
    s = len(st)
  
    N = s + k
  
    countSubstring(N, s, k)
  
# This code is contributed by chitranayal


C#
// C# program for the above approach
using System;
  
class GFG{
  
static readonly long mod = 1000000007;
  
// Function to calculate and return
// x^n in log(n) time using
// Binary Exponentiation
static long binExp(long Base, long power)
{
    long x = 1;
    while (power != 0)
    {
        if (power % 2 == 1)
            x = ((x % mod) * 
              (Base % mod)) % mod;
  
        Base = ((Base % mod) *
                (Base % mod)) % mod;
        power = power / 2;
    }
    return x;
}
  
// Function to calculate the factorial
// of a number
static long fact(long num)
{
    long result = 1;
  
    for(long i = 1; i <= num; ++i) 
    {
        result = ((result % mod) * 
                       (i % mod)) % mod;
    }
    return result;
}
  
// Function to calculate combination
static long calculate_nCi(long N, long i)
{
    // nCi = ( n! ) / (( n-i )! * i!)
    long nfact = fact(N);
    long ifact = fact(i);
    long dfact = fact(N - i);
  
    // Using Euler's theorem of Modular
    // multiplicative inverse to find
    // the inverse of a number.
    // (1/a)%mod=a^(m?2)%mod
    long inv_ifact = binExp(ifact, mod - 2);
    long inv_dfact = binExp(dfact, mod - 2);
  
    long denm = ((inv_ifact % mod) * 
                 (inv_dfact % mod)) % mod;
  
    long answer = ((nfact % mod) *
                    (denm % mod)) % mod;
    return answer;
}
  
// Function to find the count of
// possible strings
static void countSubstring(long N, long s, long k)
{
      
    // Number of ways to form all
    // possible strings
    long allWays = binExp(26, N);
  
    // Number of ways to form strings
    // that don't contain the input
    // string as a subsequence
    long noWays = 0;
  
    // Checking for all prefix length
    // from 0 to |S|-1.
    for(long i = 0; i < s; ++i) 
    {
          
        // To calculate nCi
        long nCi = calculate_nCi(N, i);
  
        // Select the remaining characters
        // 25 ^ (N-i)
        long remaining = binExp(25, N - i);
  
        long multiply = ((nCi % mod) *
                   (remaining % mod)) % mod;
  
        // Add the answer for this prefix
        // length to the readonly answer
        noWays = ((noWays % mod) +
                (multiply % mod)) % mod;
    }
  
    // Answer is the difference of
    // allWays and noWays
    long answer = ((allWays % mod) - 
                    (noWays % mod)) % mod;
  
    if (answer < 0)
        answer += mod;
  
    // Print the answer
    Console.WriteLine(answer);
}
      
// Driver code 
public static void Main(String[] args) 
{
    String str = "abc";
    long k = 2;
    long s = str.Length;
    long N = s + k;
      
    countSubstring(N, s, k);
}
}
  
// This code is contributed by Rajput-Ji


输出:
6376

时间复杂度: O(N),其中 N 是给定字符串的长度。
辅助空间: O(1)

如果您想与行业专家一起参加直播课程,请参阅Geeks Classes Live