📌  相关文章
📜  长度为 k 的回文子序列的数量,其中 k <= 3

📅  最后修改于: 2021-09-17 06:56:21             🧑  作者: Mango

给定一个长度为 n 的字符串S和一个正整数 k。任务是找到长度为 k 的回文子序列的数量,其中 k <= 3。
例子:

Input : s = "aabab", k = 2
Output : 4

Input : s = "aaa", k = 3
Output : 1

对于k = 1 ,我们可以很容易地说字符串的字符数将是答案。
对于k = 2 ,我们可以很容易地制作成对相同的字符,因此我们必须维护字符串中每个字符的计数,然后计算

sum = 0
for character 'a' to 'z'
  cnt = count(characater)
  sum = sum + cnt*(cnt-1)/2
sum is the answer.

现在随着 k 的增加,它变得很难找到。如何找到k = 3 的答案?所以想法是看到长度为3的回文将是TZT格式,所以我们要维护两个矩阵,一个计算每个字符的前缀和,一个计算字符串中每个字符的后缀和。
索引i处字符T 的前缀总和为L[T][i],T在 [0, i](索引)范围内出现的次数。
索引i处的字符T 的后缀和为R[T]已出现在 [i, n – 1](索引)范围内。
这两个矩阵都是 26*n 并且可以以复杂度 O(26*n) 预先计算这两个矩阵,其中 n 是字符串的长度。
现在如何计算子序列?想一想:对于一个索引,我假设一个字符X 在 [0, i – 1] 范围内出现 n1 次,在 [i + 1, n – 1] 范围内出现 n2 次,那么这个字符的答案将是 n1 * n2 即 L[X][i-1] * R[X][i + 1],这将给出格式为 Xs[i]-X 的子序列的计数,其中 s[i] 是第 i 个字符指数。因此,对于每个索引 i,您都必须计算其乘积

L[X][i-1] * R[X][i+1], 
where i is the range [1, n-2]  and 
      X will be from 'a' to 'z'

下面是这个方法的实现:

C++
// CPP program to count number of subsequences of
// given length.
#include 
#define MAX 100
#define MAX_CHAR 26
using namespace std;
 
// Precompute the prefix and suffix array.
void precompute(string s, int n, int l[][MAX],
                                 int r[][MAX])
{
    l[s[0] - 'a'][0] = 1;
 
    // Precompute the prefix 2D array
    for (int i = 1; i < n; i++) {
        for (int j = 0; j < MAX_CHAR; j++)
            l[j][i] += l[j][i - 1];       
 
        l[s[i] - 'a'][i]++;
    }
 
    r[s[n - 1] - 'a'][n - 1] = 1;
 
    // Precompute the Suffix 2D array.
    for (int i = n - 2; i >= 0; i--) {
        for (int j = 0; j < MAX_CHAR; j++)
            r[j][i] += r[j][i + 1];      
 
        r[s[i] - 'a'][i]++;
    }
}
 
// Find the number of palindromic subsequence of
// length k
int countPalindromes(int k, int n, int l[][MAX],
                                   int r[][MAX])
{
    int ans = 0;
 
    // If k is 1.
    if (k == 1) {
        for (int i = 0; i < MAX_CHAR; i++)
            ans += l[i][n - 1]; 
        return ans;
    }
 
    // If k is 2
    if (k == 2) {
 
        // Adding all the products of prefix array
        for (int i = 0; i < MAX_CHAR; i++)            
            ans += ((l[i][n - 1] * (l[i][n - 1] - 1)) / 2);
        return ans;
    }
 
    // For k greater than 2. Adding all the products
    // of value of prefix and suffix array.
    for (int i = 1; i < n - 1; i++)
        for (int j = 0; j < MAX_CHAR; j++)            
            ans += l[j][i - 1] * r[j][i + 1]; 
 
    return ans;
}
 
// Driven Program
int main()
{
    string s = "aabab";
    int k = 2;
    int n = s.length();
    int l[MAX_CHAR][MAX] = { 0 }, r[MAX_CHAR][MAX] = { 0 };
    precompute(s, n, l, r);
    cout << countPalindromes(k, n, l, r) << endl;
    return 0;
}


Java
// Java program to count number of subsequences of
// given length.
class GFG
{
     
static final int MAX=100;
static final int MAX_CHAR=26;
 
// Precompute the prefix and suffix array.
static void precompute(String s, int n, int l[][],
                                int r[][])
{
    l[s.charAt(0) - 'a'][0] = 1;
 
    // Precompute the prefix 2D array
    for (int i = 1; i < n; i++) {
        for (int j = 0; j < MAX_CHAR; j++)
            l[j][i] += l[j][i - 1];    
 
        l[s.charAt(i) - 'a'][i]++;
    }
 
    r[s.charAt(n - 1) - 'a'][n - 1] = 1;
 
    // Precompute the Suffix 2D array.
    for (int i = n - 2; i >= 0; i--) {
        for (int j = 0; j < MAX_CHAR; j++)
            r[j][i] += r[j][i + 1];    
 
        r[s.charAt(i) - 'a'][i]++;
    }
}
 
// Find the number of palindromic subsequence of
// length k
static int countPalindromes(int k, int n, int l[][],
                                            int r[][])
{
    int ans = 0;
 
    // If k is 1.
    if (k == 1) {
        for (int i = 0; i < MAX_CHAR; i++)
            ans += l[i][n - 1];
         
        return ans;
    }
 
    // If k is 2
    if (k == 2) {
 
        // Adding all the products of prefix array
        for (int i = 0; i < MAX_CHAR; i++)            
            ans += ((l[i][n - 1] * (l[i][n - 1] - 1)) / 2);
         
        return ans;
    }
 
    // For k greater than 2. Adding all the products
    // of value of prefix and suffix array.
    for (int i = 1; i < n - 1; i++)
        for (int j = 0; j < MAX_CHAR; j++)            
            ans += l[j][i - 1] * r[j][i + 1];
 
    return ans;
}
     
// Driver code
public static void main (String[] args)
{
    String s = "aabab";
    int k = 2;
    int n = s.length();
    int l[][]=new int[MAX_CHAR][MAX];
    int r[][]=new int[MAX_CHAR][MAX];
     
    precompute(s, n, l, r);
     
    System.out.println(countPalindromes(k, n, l, r));
}
}
 
// This code is contributed by Anant Agarwal.


Python3
# Python3 program to count number of
# subsequences of given length.
 
MAX = 100
MAX_CHAR = 26
 
# Precompute the prefix and suffix array.
def precompute(s, n, l, r):
    l[ord(s[0]) - ord('a')][0] = 1
 
    # Precompute the prefix 2D array
    for i in range(1, n):
        for j in range(MAX_CHAR):
            l[j][i] += l[j][i - 1]
         
        l[ord(s[i]) - ord('a')][i] += 1
 
    r[ord(s[n - 1]) - ord('a')][n - 1] = 1
 
    # Precompute the Suffix 2D array.
    k = n - 2
    while(k >= 0):
        for j in range(MAX_CHAR):
            r[j][k] += r[j][k + 1]
        r[ord(s[k]) - ord('a')][k] += 1
        k -= 1
 
# Find the number of palindromic
# subsequence of length k
def countPalindromes(k, n, l, r):
    ans = 0
 
    # If k is 1.
    if (k == 1):
        for i in range(MAX_CHAR):
            ans += l[i][n - 1]
        return ans
 
    # If k is 2
    if (k == 2):
         
        # Adding all the products of
        # prefix array
        for i in range(MAX_CHAR):
            ans += ((l[i][n - 1] * (l[i][n - 1] - 1)) / 2)
        return ans
     
    # For k greater than 2. Adding all
    # the products of value of prefix
    # and suffix array.
    for i in range(1, n - 1):
        for j in range(MAX_CHAR):
            ans += l[j][i - 1] * r[j][i + 1]
    return ans
 
# Driven Program
s = "aabab"
k = 2
n = len(s)
 
l = [[0 for x in range(MAX)] for y in range(MAX_CHAR)]
r = [[0 for x in range(MAX)] for y in range(MAX_CHAR)]
 
precompute(s, n, l, r)
print (countPalindromes(k, n, l, r))
 
 
# This code is written by Sachin Bisht


C#
// C# program to count number of
// subsequences of given length.
using System;
class GFG {
     
static int MAX=100;
static int MAX_CHAR=26;
 
// Precompute the prefix
// and suffix array.
static void precompute(string s, int n,
                    int [,]l, int [,]r)
{
    l[s[0] - 'a',0] = 1;
 
    // Precompute the
    // prefix 2D array
    for (int i = 1; i < n; i++)
    {
        for (int j = 0; j < MAX_CHAR; j++)
            l[j, i] += l[j,i - 1];    
 
        l[s[i] - 'a',i]++;
    }
 
    r[s[n - 1] - 'a',n - 1] = 1;
 
    // Precompute the Suffix 2D array.
    for (int i = n - 2; i >= 0; i--)
    {
        for (int j = 0; j < MAX_CHAR; j++)
            r[j, i] += r[j,i + 1];    
 
        r[s[i] - 'a',i]++;
    }
}
 
// Find the number of palindromic
// subsequence of length k
static int countPalindromes(int k, int n,
                      int [,]l, int [,]r)
{
    int ans = 0;
 
    // If k is 1.
    if (k == 1)
    {
        for (int i = 0; i < MAX_CHAR; i++)
            ans += l[i,n - 1];
         
        return ans;
    }
 
    // If k is 2
    if (k == 2) {
 
        // Adding all the products
        // of prefix array
        for (int i = 0; i < MAX_CHAR; i++)            
            ans += ((l[i,n - 1] *
                    (l[i,n - 1] - 1)) / 2);
         
        return ans;
    }
 
    // For k greater than 2.
    // Adding all the products
    // of value of prefix and
    // suffix array.
    for (int i = 1; i < n - 1; i++)
        for (int j = 0; j < MAX_CHAR; j++)            
            ans += l[j,i - 1] * r[j, i + 1];
 
    return ans;
}
     
// Driver code
public static void Main ()
{
    string s = "aabab";
    int k = 2;
    int n = s.Length;
    int [,]l=new int[MAX_CHAR,MAX];
    int [,]r=new int[MAX_CHAR,MAX];
     
    precompute(s, n, l, r);
     
    Console.Write(countPalindromes(k, n, l, r));
}
}
 
// This code is contributed by Nitin Mittal.


PHP
= 0; $i--)
    {
        for ($j = 0; $j < $MAX_CHAR; $j++)
            $r[$j][$i] += $r[$j][$i + 1];    
 
        $r[ord($s[$i]) - ord('a')][$i]++;
    }
}
 
// Find the number of palindromic
// subsequence of length k
function countPalindromes($k, $n, &$l, &$r)
{
    global $MAX, $MAX_CHAR;
    $ans = 0;
 
    // If k is 1.
    if ($k == 1)
    {
        for ($i = 0; $i < $MAX_CHAR; $i++)
            $ans += $l[$i][$n - 1];
        return $ans;
    }
 
    // If k is 2
    if ($k == 2)
    {
 
        // Adding all the products of
        // prefix array
        for ($i = 0; $i < $MAX_CHAR; $i++)            
            $ans += (($l[$i][$n - 1] *
                     ($l[$i][$n - 1] - 1)) / 2);
        return $ans;
    }
 
    // For k greater than 2. Adding all
    // the products of value of prefix
    // and suffix array.
    for ($i = 1; $i < $n - 1; $i++)
        for ($j = 0; $j < $MAX_CHAR; $j++)            
            $ans += $l[$j][$i - 1] *
                    $r[$j][$i + 1];
 
    return $ans;
}
 
// Driver Code
$s = "aabab";
$k = 2;
$n = strlen($s);
$l = array_fill(0, $MAX_CHAR,
     array_fill(0, $MAX, NULL));
$r = array_fill(0, $MAX_CHAR,
     array_fill(0, $MAX, NULL));
precompute($s, $n, $l, $r);
echo countPalindromes($k, $n, $l, $r) . "\n";
 
// This code is contributed by ita_c
?>


Javascript


输出:

4

如果您希望与专家一起参加现场课程,请参阅DSA 现场工作专业课程学生竞争性编程现场课程