g1801_1900.s1898_maximum_number_of_removable_characters.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g1801_1900.s1898_maximum_number_of_removable_characters;
// #Medium #Array #String #Binary_Search #Binary_Search_II_Day_6
// #2022_05_04_Time_121_ms_(72.51%)_Space_84.5_MB_(58.77%)
public class Solution {
public int maximumRemovals(String s, String p, int[] removable) {
if (s == null || s.length() == 0) {
return 0;
}
// binary search for the k which need to be removed
char[] convertedS = s.toCharArray();
int left = 0;
int right = removable.length - 1;
while (left <= right) {
int middle = (left + right) / 2;
// remove letters from 0 to mid by changing it into some other non letters
for (int i = 0; i <= middle; i++) {
convertedS[removable[i]] = '?';
}
// if it is still subsequence change left boundary
// else replace all removed ones and change right boundary
if (isSubsequence(convertedS, p)) {
left = middle + 1;
} else {
for (int i = 0; i <= middle; i++) {
convertedS[removable[i]] = s.charAt(removable[i]);
}
right = middle - 1;
}
}
return left;
}
// simple check for subsequence
private boolean isSubsequence(char[] convertedS, String p) {
int p1 = 0;
int p2 = 0;
while (p1 < convertedS.length && p2 < p.length()) {
if (convertedS[p1] != '?' && convertedS[p1] == p.charAt(p2)) {
p2 += 1;
}
p1 += 1;
}
return p2 == p.length();
}
}