Problem · String
K Smallest Substring
Learn this problemProblem statement
You are given a binary string input_str and an integer k.
Find a substring of input_str that satisfies all of the following conditions:
- It contains exactly
koccurrences of'1'. - It has the smallest possible length.
- Among all substrings with that minimum length, it is lexicographically smallest.
It is guaranteed that an answer exists.
Function
getSubstring(input_str: String, k: int) → StringExamples
Example 1
input_str = "0101101"k = 3return = "1011"Some of the possible substrings following the first condition:
- "01011"
- "1101"
- "1011"
The substring that is smallest in length and lexicographically smallest is "1011".
It can be proven that there is no other substring that is smaller than "1011" in length and lexicographic order. Hence the answer is "1011".
Constraints
input_str is always greater than or equal to k.