3316. Find Maximum Removals From Source String
3316. Find Maximum Removals From Source String
Description
You are given a string source
of size n
, a string pattern
that is a subsequence of source
, and a sorted integer array targetIndices
that contains distinct numbers in the range [0, n - 1]
.
We define an operation as removing a character at an index idx
from source
such that:
idx
is an element oftargetIndices
.pattern
remains a subsequence ofsource
after removing the character.
Performing an operation does not change the indices of the other characters in source
. For example, if you remove 'c'
from "acb"
, the character at index 2 would still be 'b'
.
Return the maximum number of operations that can be performed.
Example 1:
1 | Input: source = "abbaa", pattern = "aba", targetIndices = [0,1,2] |
Explanation:
We can’t remove source[0]
but we can do either of these two operations:
- Remove
source[1]
, so thatsource
becomes"a_baa"
. - Remove
source[2]
, so thatsource
becomes"ab_aa"
.
Example 2:
1 | Input: source = "bcda", pattern = "d", targetIndices = [0,3] |
Explanation:
We can remove source[0]
and source[3]
in two operations.
Example 3:
1 | Input: source = "dda", pattern = "dda", targetIndices = [0,1,2] |
Explanation:
We can’t remove any character from source
.
Example 4:
1 | Input: source = "yeyeykyded", pattern = "yeyyd", targetIndices = [0,2,3,4] |
Explanation:
We can remove source[2]
and source[3]
in two operations.
Constraints:
1 <= n == source.length <= 3 * 10^3
1 <= pattern.length <= n
1 <= targetIndices.length <= n
targetIndices
is sorted in ascending order.- The input is generated such that
targetIndices
contains distinct elements in the range[0, n - 1]
. source
andpattern
consist only of lowercase English letters.- The input is generated such that
pattern
appears as a subsequence insource
.
Hints/Notes
- 2024/09/25
- dp
- 0x3F’s solution(checked)
- Biweekly Contest 141 T3
Solution
Language: C++
1 | class Solution { |