Number of Strings Which Can Be Rearranged to Contain Substring - Problem
You are given an integer n. A string s is called good if it contains only lowercase English characters and it is possible to rearrange the characters of s such that the new string contains "leet" as a substring.
For example:
- The string
"lteer"is good because we can rearrange it to form"leetr". "letl"is not good because we cannot rearrange it to contain"leet"as a substring.
Return the total number of good strings of length n. Since the answer may be large, return it modulo 10^9 + 7.
A substring is a contiguous sequence of characters within a string.
Input & Output
Example 1 — Minimum Valid Length
$
Input:
n = 4
›
Output:
12
💡 Note:
With n=4, we need exactly "leet" or rearrangements that contain these 4 letters. There are 4! = 24 arrangements of "leet", but since we have repeated 'e', we get 4!/2! = 12 unique arrangements.
Example 2 — Length 5
$
Input:
n = 5
›
Output:
960
💡 Note:
With n=5, we can have "leet" plus one additional letter (any of 26 choices). The additional letter can be placed in any of 5 positions, giving us more arrangements.
Example 3 — Too Short
$
Input:
n = 3
›
Output:
0
💡 Note:
With only 3 characters, it's impossible to form "leet" which requires at least 4 characters (l, e, e, t).
Constraints
- 1 ≤ n ≤ 105
Visualization
Tap to expand
Understanding the Visualization
1
Input
Length n for string generation
2
Requirement
Must contain letters to form "leet"
3
Count
Total valid rearrangements
Key Takeaway
🎯 Key Insight: Use inclusion-exclusion to count strings with required letter frequencies
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code