Distinct Subsequences Problem Statement

You are given a string 'S' of length 'N' which may include duplicate alphabets. Your goal is to calculate the number of distinct subsequences in the string.

Example:

Input:
"S" = "deed"
Output:
11
Explanation:

The possible subsequences are {""}, {"d"}, {"e"}, {"de"}, {"e"}, {"de"}, {"ee"}, {"dee"}, {"d"}, {"dd"}, {"ed"}, {"ded"}, {"ed"}, {"ded"}, {"eed"} and {"deed"}. After filtering duplicates, the distinct subsequences are: {""}, {"d"}, {"e"}, {"de"}, {"ee"}, {"dee"}, {"dd"}, {"ed"}, {"ded"}, {"eed"}, {"deed"}, resulting in 11 distinct subsequences.

Input:

The first line contains an integer 'T' denoting the number of test cases. Each of the following T lines contains a single string 'S'.

Output:

For each test case, output the count of distinct subsequences, modulo 109 + 7, on a new line.

Constraints:

  • 1 <= T <= 10
  • 1 <= N <= 104

Note: The answer might be large, so return it modulo 109 + 7.

AnswerBot
1y

The task is to find the count of distinct subsequences in a given string.

  • Use dynamic programming to solve the problem.

  • Create a 2D array to store the count of distinct subsequences for each prefix of t...read more

Help your peers!
Add answer anonymously...
Meesho Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter