-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathminimum_window_substring.dart
158 lines (126 loc) · 4.36 KB
/
minimum_window_substring.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
-* Minimum Window Substring *-
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.
A substring is a contiguous sequence of characters within the string.
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?
*/
class A {
// Runtime: 529 ms, faster than 50.00% of Dart online submissions for Minimum Window Substring.
// Memory Usage: 149.5 MB, less than 100.00% of Dart online submissions for Minimum Window Substring.
String minWindow(String s, String t) {
List<int> ht = List.filled(100, 0);
int i = 0, j = 0;
List<int> cht = List.filled(100, 0);
int m = s.length,
// n = t.length,
cnt = 0,
reqcnt = 0,
min = double.maxFinite.toInt();
String res = "";
List<String> ss = s.split("");
List<String> tt = t.split("");
for (String ch in tt) cht[ch.codeUnitAt(0) - 'A'.codeUnitAt(0)]++;
for (int num in cht) if (num > 0) reqcnt++;
while (j <= m) {
if (cnt == reqcnt) {
if (min > (j - i + 1)) {
min = j - i + 1;
res = s.substring(i, j);
}
if (cht[ss[i].codeUnitAt(0) - 'A'.codeUnitAt(0)] > 0) {
ht[ss[i].codeUnitAt(0) - 'A'.codeUnitAt(0)]--;
if (ht[ss[i].codeUnitAt(0) - 'A'.codeUnitAt(0)] <
cht[ss[i].codeUnitAt(0) - 'A'.codeUnitAt(0)]) cnt--;
}
i++;
} else {
if (j == m) break;
if (cht[ss[j].codeUnitAt(0) - 'A'.codeUnitAt(0)] > 0) {
ht[ss[j].codeUnitAt(0) - 'A'.codeUnitAt(0)]++;
if (ht[ss[j].codeUnitAt(0) - 'A'.codeUnitAt(0)] ==
cht[ss[j].codeUnitAt(0) - 'A'.codeUnitAt(0)]) cnt++;
}
j++;
}
}
return res;
}
}
class B {
// Runtime: 555 ms, faster than 50.00% of Dart online submissions for Minimum Window Substring.
// Memory Usage: 142.8 MB, less than 100.00% of Dart online submissions for Minimum Window Substring.
String minWindow(String s, String t) {
if (s == "" || t == "") return "";
if (s.isEmpty || t.isEmpty) return "";
int n = s.length;
int m = t.length;
List<int> freq = List.filled(128, 0);
int characters = 0;
for (int i = 0; i < m; i++) {
freq[t.codeUnitAt(i)]++;
characters++;
}
int start = 0, end = 0;
int min_length = double.maxFinite.toInt();
int start_index = 0;
while (end < n) {
if (freq[s.codeUnitAt(end)] > 0) characters--;
freq[s.codeUnitAt(end)]--;
end++;
while (characters == 0) {
if (min_length > end - start) {
min_length = end - start;
start_index = start;
}
freq[s.codeUnitAt(start)]++;
if (freq[s.codeUnitAt(start)] > 0) {
characters++;
}
start++;
}
}
return min_length == double.maxFinite.toInt()
? ""
: s.substring(start_index, start_index + min_length);
}
}
class C {
// Runtime: 309 ms, faster than 100.00% of Dart online submissions for Minimum Window Substring.
// Memory Usage: 158.3 MB, less than 50.00% of Dart online submissions for Minimum Window Substring.
String minWindow(String s, String t) {
int m = s.length, n = t.length;
List<int> map = List.filled(128, 0);
for (int i = 0; i < n; i++) map[t.codeUnitAt(i)]++;
int count = 0, i = 0, j = 0, min = double.maxFinite.toInt(), si = -1;
while (j < m) {
if (map[s.codeUnitAt(j++)]-- > 0) count++;
while (count == n) {
if (j - i < min) {
min = j - i;
si = i;
}
if (++map[s.codeUnitAt(i++)] > 0) count--;
}
}
return si == -1 ? "" : s.substring(si, si + min);
}
}