comments | difficulty | edit_url | tags | |||
---|---|---|---|---|---|---|
true |
Hard |
|
Given two strings s
and t
of lengths m
and n
respectively, return the minimum window substring of s
such that every character in t
(including duplicates) is included in the window. If there is no such substring, return the empty string ""
.
The testcases will be generated such that the answer is unique.
Example 1:
Input: s = "ADOBECODEBANC", t = "ABC" Output: "BANC" Explanation: The minimum window substring "BANC" includes 'A', 'B', and 'C' from string t.
Example 2:
Input: s = "a", t = "a" Output: "a" Explanation: The entire string s is the minimum window.
Example 3:
Input: s = "a", t = "aa" Output: "" Explanation: Both 'a's from t must be included in the window. Since the largest window of s only has one 'a', return empty string.
Constraints:
m == s.length
n == t.length
1 <= m, n <= 105
s
andt
consist of uppercase and lowercase English letters.
Follow up: Could you find an algorithm that runs in O(m + n)
time?
We use a hash table or array
We traverse the string
We add it to the window, i.e.,
After the traversal, if the minimum covering substring is not found, return an empty string, otherwise return
The time complexity is
class Solution:
def minWindow(self, s: str, t: str) -> str:
need = Counter(t)
window = Counter()
cnt, j, k, mi = 0, 0, -1, inf
for i, c in enumerate(s):
window[c] += 1
if need[c] >= window[c]:
cnt += 1
while cnt == len(t):
if i - j + 1 < mi:
mi = i - j + 1
k = j
if need[s[j]] >= window[s[j]]:
cnt -= 1
window[s[j]] -= 1
j += 1
return '' if k < 0 else s[k : k + mi]
class Solution {
public String minWindow(String s, String t) {
int[] need = new int[128];
int[] window = new int[128];
int m = s.length(), n = t.length();
for (int i = 0; i < n; ++i) {
++need[t.charAt(i)];
}
int cnt = 0, j = 0, k = -1, mi = 1 << 30;
for (int i = 0; i < m; ++i) {
++window[s.charAt(i)];
if (need[s.charAt(i)] >= window[s.charAt(i)]) {
++cnt;
}
while (cnt == n) {
if (i - j + 1 < mi) {
mi = i - j + 1;
k = j;
}
if (need[s.charAt(j)] >= window[s.charAt(j)]) {
--cnt;
}
--window[s.charAt(j++)];
}
}
return k < 0 ? "" : s.substring(k, k + mi);
}
}
class Solution {
public:
string minWindow(string s, string t) {
int need[128]{};
int window[128]{};
int m = s.size(), n = t.size();
for (char& c : t) {
++need[c];
}
int cnt = 0, j = 0, k = -1, mi = 1 << 30;
for (int i = 0; i < m; ++i) {
++window[s[i]];
if (need[s[i]] >= window[s[i]]) {
++cnt;
}
while (cnt == n) {
if (i - j + 1 < mi) {
mi = i - j + 1;
k = j;
}
if (need[s[j]] >= window[s[j]]) {
--cnt;
}
--window[s[j++]];
}
}
return k < 0 ? "" : s.substr(k, mi);
}
};
func minWindow(s string, t string) string {
need := [128]int{}
window := [128]int{}
for _, c := range t {
need[c]++
}
cnt, j, k, mi := 0, 0, -1, 1<<30
for i, c := range s {
window[c]++
if need[c] >= window[c] {
cnt++
}
for cnt == len(t) {
if i-j+1 < mi {
mi = i - j + 1
k = j
}
if need[s[j]] >= window[s[j]] {
cnt--
}
window[s[j]]--
j++
}
}
if k < 0 {
return ""
}
return s[k : k+mi]
}
function minWindow(s: string, t: string): string {
const need: number[] = new Array(128).fill(0);
const window: number[] = new Array(128).fill(0);
for (const c of t) {
++need[c.charCodeAt(0)];
}
let cnt = 0;
let j = 0;
let k = -1;
let mi = 1 << 30;
for (let i = 0; i < s.length; ++i) {
++window[s.charCodeAt(i)];
if (need[s.charCodeAt(i)] >= window[s.charCodeAt(i)]) {
++cnt;
}
while (cnt === t.length) {
if (i - j + 1 < mi) {
mi = i - j + 1;
k = j;
}
if (need[s.charCodeAt(j)] >= window[s.charCodeAt(j)]) {
--cnt;
}
--window[s.charCodeAt(j++)];
}
}
return k < 0 ? '' : s.slice(k, k + mi);
}
impl Solution {
pub fn min_window(s: String, t: String) -> String {
let (mut need, mut window, mut cnt) = ([0; 256], [0; 256], 0);
for c in t.chars() {
need[c as usize] += 1;
}
let (mut j, mut k, mut mi) = (0, -1, 1 << 31);
for (i, c) in s.chars().enumerate() {
window[c as usize] += 1;
if need[c as usize] >= window[c as usize] {
cnt += 1;
}
while cnt == t.len() {
if i - j + 1 < mi {
k = j as i32;
mi = i - j + 1;
}
let l = s.chars().nth(j).unwrap() as usize;
if need[l] >= window[l] {
cnt -= 1;
}
window[l] -= 1;
j += 1;
}
}
if k < 0 {
return "".to_string();
}
let k = k as usize;
s[k..k + mi].to_string()
}
}
public class Solution {
public string MinWindow(string s, string t) {
int[] need = new int[128];
int[] window = new int[128];
foreach (var c in t) {
++need[c];
}
int cnt = 0, j = 0, k = -1, mi = 1 << 30;
for (int i = 0; i < s.Length; ++i) {
++window[s[i]];
if (need[s[i]] >= window[s[i]]) {
++cnt;
}
while (cnt == t.Length) {
if (i - j + 1 < mi) {
mi = i - j + 1;
k = j;
}
if (need[s[j]] >= window[s[j]]) {
--cnt;
}
--window[s[j++]];
}
}
return k < 0 ? "" : s.Substring(k, mi);
}
}