Skip to content

Latest commit

 

History

History
255 lines (210 loc) · 6.29 KB

File metadata and controls

255 lines (210 loc) · 6.29 KB

中文文档

Description

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 and t consist of uppercase and lowercase English letters.

 

Follow up: Could you find an algorithm that runs in O(m + n) time?

Solutions

Python3

class Solution:
    def minWindow(self, s: str, t: str) -> str:
        ans = ''
        m, n = len(s), len(t)
        if m < n:
            return ans
        need = Counter(t)
        window = Counter()
        i, cnt, mi = 0, 0, inf
        for j, c in enumerate(s):
            window[c] += 1
            if need[c] >= window[c]:
                cnt += 1
            while cnt == n:
                if j - i + 1 < mi:
                    mi = j - i + 1
                    ans = s[i : j + 1]
                c = s[i]
                if need[c] >= window[c]:
                    cnt -= 1
                window[c] -= 1
                i += 1
        return ans

Java

class Solution {
    public String minWindow(String s, String t) {
        Map<Character, Integer> mp = new HashMap<>();
        int begin = 0, end = 0, counter = t.length(), minLen = Integer.MAX_VALUE, minStart = 0,
            size = s.length();

        for (char c : s.toCharArray()) mp.put(c, 0);
        for (char c : t.toCharArray()) {
            if (mp.containsKey(c))
                mp.put(c, mp.get(c) + 1);
            else
                return "";
        }

        while (end < size) {
            if (mp.get(s.charAt(end)) > 0) counter--;

            mp.put(s.charAt(end), mp.get(s.charAt(end)) - 1);

            end++;

            while (counter == 0) {
                if (end - begin < minLen) {
                    minStart = begin;
                    minLen = end - begin;
                }
                mp.put(s.charAt(begin), mp.get(s.charAt(begin)) + 1);

                if (mp.get(s.charAt(begin)) > 0) {
                    counter++;
                }

                begin++;
            }
        }

        if (minLen != Integer.MAX_VALUE) {
            return s.substring(minStart, minStart + minLen);
        }
        return "";
    }
}

TypeScript

function minWindow(s: string, t: string): string {
    let n1 = s.length,
        n2 = t.length;
    if (n1 < n2) return '';
    let need = new Array(128).fill(0);
    let window = new Array(128).fill(0);
    for (let i = 0; i < n2; ++i) {
        ++need[t.charCodeAt(i)];
    }

    let left = 0,
        right = 0;
    let res = '';
    let count = 0;
    let min = n1 + 1;
    while (right < n1) {
        let cur = s.charCodeAt(right);
        ++window[cur];
        if (need[cur] > 0 && need[cur] >= window[cur]) {
            ++count;
        }
        while (count == n2) {
            cur = s.charCodeAt(left);
            if (need[cur] > 0 && need[cur] >= window[cur]) {
                --count;
            }
            if (right - left + 1 < min) {
                min = right - left + 1;
                res = s.slice(left, right + 1);
            }
            --window[cur];
            ++left;
        }
        ++right;
    }
    return res;
}

C++

class Solution {
public:
    string minWindow(string s, string t) {
        unordered_map<char, int> m;
        int begin = 0, end = 0, minlen = INT_MAX, minStart = 0, size = s.size(), counter = t.size();
        for (auto c : t)
            m[c]++;

        while (end < size) {
            if (m[s[end]] > 0)
                counter--;

            m[s[end]]--;

            end++;

            while (counter == 0) {
                if (end - begin < minlen) {
                    minStart = begin;
                    minlen = end - begin;
                }

                m[s[begin]]++;
                if (m[s[begin]] > 0)
                    counter++;

                begin++;
            }
        }

        if (minlen != INT_MAX) {
            return s.substr(minStart, minlen);
        }
        return "";
    }
};

Go

func minWindow(s string, t string) string {
	ans := ""
	m, n := len(s), len(t)
	if m < n {
		return ans
	}
	need := make([]int, 128)
	for _, c := range t {
		need[c] += 1
	}
	window := make([]int, 128)
	i, cnt, mi := 0, 0, m+1
	for j, c := range s {
		window[c]++
		if need[c] >= window[c] {
			cnt++
		}
		for cnt == n {
			if j-i+1 < mi {
				mi = j - i + 1
				ans = s[i : j+1]
			}
			c = rune(s[i])
			if need[c] >= window[c] {
				cnt--
			}
			window[c]--
			i++
		}
	}
	return ans
}

...