You are given a 0-indexed string s
that you must perform k
replacement operations on. The replacement operations are given as three 0-indexed parallel arrays, indices
, sources
, and targets
, all of length k
.
To complete the ith
replacement operation:
- Check if the substring
sources[i]
occurs at indexindices[i]
in the original strings
. - If it does not occur, do nothing.
- Otherwise if it does occur, replace that substring with
targets[i]
.
For example, if s = "abcd"
, indices[i] = 0
, sources[i] = "ab"
, and targets[i] = "eee"
, then the result of this replacement will be "eeecd"
.
All replacement operations must occur simultaneously, meaning the replacement operations should not affect the indexing of each other. The testcases will be generated such that the replacements will not overlap.
- For example, a testcase with
s = "abc"
,indices = [0, 1]
, andsources = ["ab","bc"]
will not be generated because the"ab"
and"bc"
replacements overlap.
Return the resulting string after performing all replacement operations on s
.
A substring is a contiguous sequence of characters in a string.
Example 1:
Input: s = "abcd", indices = [0, 2], sources = ["a", "cd"], targets = ["eee", "ffff"] Output: "eeebffff" Explanation: "a" occurs at index 0 in s, so we replace it with "eee". "cd" occurs at index 2 in s, so we replace it with "ffff".
Example 2:
Input: s = "abcd", indices = [0, 2], sources = ["ab","ec"], targets = ["eee","ffff"] Output: "eeecd" Explanation: "ab" occurs at index 0 in s, so we replace it with "eee". "ec" does not occur at index 2 in s, so we do nothing.
Constraints:
1 <= s.length <= 1000
k == indices.length == sources.length == targets.length
1 <= k <= 100
0 <= indexes[i] < s.length
1 <= sources[i].length, targets[i].length <= 50
s
consists of only lowercase English letters.sources[i]
andtargets[i]
consist of only lowercase English letters.
class Solution:
def findReplaceString(self, s: str, indices: List[int], sources: List[str], targets: List[str]) -> str:
n = len(s)
d = [-1] * n
for i, (j, source) in enumerate(zip(indices, sources)):
if s[j: j + len(source)] == source:
d[j] = i
ans = []
i = 0
while i < n:
if d[i] >= 0:
ans.append(targets[d[i]])
i += len(sources[d[i]])
else:
ans.append(s[i])
i += 1
return ''.join(ans)
class Solution {
public String findReplaceString(String s, int[] indices, String[] sources, String[] targets) {
int n = s.length();
int[] d = new int[n];
Arrays.fill(d, -1);
for (int i = 0; i < indices.length; ++i) {
int j = indices[i];
String source = sources[i];
if (s.substring(j, Math.min(n, j + source.length())).equals(source)) {
d[j] = i;
}
}
StringBuilder ans = new StringBuilder();
for (int i = 0; i < n;) {
if (d[i] >= 0) {
ans.append(targets[d[i]]);
i += sources[d[i]].length();
} else {
ans.append(s.charAt(i++));
}
}
return ans.toString();
}
}
class Solution {
public:
string findReplaceString(string s, vector<int>& indices, vector<string>& sources, vector<string>& targets) {
int n = s.size();
vector<int> d(n, -1);
for (int i = 0; i < indices.size(); ++i) {
int j = indices[i];
string source = sources[i];
if (s.substr(j, source.size()) == source) {
d[j] = i;
}
}
string ans;
for (int i = 0; i < n;) {
if (d[i] >= 0) {
ans += targets[d[i]];
i += sources[d[i]].size();
} else {
ans += s[i++];
}
}
return ans;
}
};
func findReplaceString(s string, indices []int, sources []string, targets []string) string {
n := len(s)
d := make([]int, n)
for i, j := range indices {
source := sources[i]
if s[j:min(j+len(source), n)] == source {
d[j] = i + 1
}
}
ans := &strings.Builder{}
for i := 0; i < n; {
if d[i] > 0 {
ans.WriteString(targets[d[i]-1])
i += len(sources[d[i]-1])
} else {
ans.WriteByte(s[i])
i++
}
}
return ans.String()
}
func min(a, b int) int {
if a < b {
return a
}
return b
}