-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmaximum_length_of_a_concatenated_string_with_unique_characters.dart
255 lines (205 loc) · 7.05 KB
/
maximum_length_of_a_concatenated_string_with_unique_characters.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/*
-* Maximum Length of a Concatenated String with Unique Characters *-
You are given an array of strings arr. A string s is formed by the concatenation of a subsequence of arr that has unique characters.
Return the maximum possible length of s.
A subsequence is an array that can be derived from another array by deleting some or no elements without changing the order of the remaining elements.
Example 1:
Input: arr = ["un","iq","ue"]
Output: 4
Explanation: All the valid concatenations are:
- ""
- "un"
- "iq"
- "ue"
- "uniq" ("un" + "iq")
- "ique" ("iq" + "ue")
Maximum length is 4.
Example 2:
Input: arr = ["cha","r","act","ers"]
Output: 6
Explanation: Possible longest valid concatenations are "chaers" ("cha" + "ers") and "acters" ("act" + "ers").
Example 3:
Input: arr = ["abcdefghijklmnopqrstuvwxyz"]
Output: 26
Explanation: The only string in arr has all 26 characters.
Constraints:
1 <= arr.length <= 16
1 <= arr[i].length <= 26
arr[i] contains only lowercase English letters.
*/
import 'dart:collection';
import 'dart:math';
class A {
// BackTracking
//Runtime: 589 ms, faster than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
// Memory Usage: 148.7 MB, less than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
int max = 0;
int maxLength(List<String> arr) {
backTrack(arr, "", 0);
return max;
}
void backTrack(List<String> arr, String current, int start) {
if (max < current.length) max = current.length;
for (int i = start; i < arr.length; i++) {
if (!isValid(current, arr.elementAt(i))) continue;
backTrack(arr, current + arr.elementAt(i), i + 1);
}
}
bool isValid(String currentString, String newString) {
List<int> array = List.filled(26, 0);
for (int i = 0; i < newString.length; i++) {
if (++array[newString.codeUnitAt(i) - 'a'.codeUnitAt(0)] == 2)
return false;
if (currentString.contains(
newString[i] + "",
)) return false;
}
return true;
}
}
class B {
// Recursion
// Runtime: 779 ms, faster than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
// Memory Usage: 173.7 MB, less than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
int maxLength(List<String> arr) {
return solve(arr, 0, "");
}
int solve(List<String> arr, int i, String soFar) {
if (i == arr.length) {
if (isValid(soFar)) {
return soFar.length;
}
return 0;
}
int size1 = solve(arr, i + 1, soFar);
int size2 = solve(arr, i + 1, soFar + arr.elementAt(i));
return max(size1, size2);
}
bool isValid(String s) {
List<int> freq = List.filled(26, 0);
for (int i = 0; i < s.length; i++) {
int val = s.codeUnitAt(i) - 'a'.codeUnitAt(0);
freq[val]++;
if (freq[val] > 1) {
return false;
}
}
return true;
}
}
class C {
// Depth First Search
// Runtime: 598 ms, faster than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
// Memory Usage: 152.3 MB, less than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
int result = 0;
int maxLength(List<String> arr) {
if (arr.isEmpty || arr.length == 0) {
return 0;
}
dfs(arr, "", 0);
return result;
}
void dfs(List<String> arr, String path, int idx) {
bool isUniqueChar = isUniqueChars(path);
if (isUniqueChar) {
result = max(path.length, result);
}
if (idx == arr.length || !isUniqueChar) {
return;
}
for (int i = idx; i < arr.length; i++) {
dfs(arr, path + arr.elementAt(i), i + 1);
}
}
bool isUniqueChars(String s) {
HashSet<String> hashset = HashSet();
for (String c in s.split("")) {
if (hashset.contains(c)) {
return false;
}
hashset.add(c);
}
return true;
}
}
class D {
// BitMask
// Runtime: 479 ms, faster than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
// Memory Usage: 141.2 MB, less than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
int maxLength(List<String> arr) {
int n = arr.length;
List<int> ans = List.filled(1, 0);
List<List<int>> bitMap =
List.filled(n, 0).map((e) => List.filled(2, 0)).toList();
for (int i = 0; i < n; ++i) {
int a = 0;
for (String ch in arr.elementAt(i).split("")) {
int bit = ch.codeUnitAt(0) - 'a'.codeUnitAt(0);
if (((a >> bit) & 1) == 1) {
a = 0;
break;
}
a |= (1 << bit);
}
bitMap[i][0] = a;
bitMap[i][1] = a == 0 ? 0 : arr.elementAt(i).length;
}
dfs(arr, bitMap, ans, 0, 0, 0);
return ans[0];
}
void dfs(List<String> arr, List<List<int>> bitMap, List<int> ans, int start,
int curLen, int curBit) {
if (ans[0] < curLen) ans[0] = curLen;
for (int i = start; i < arr.length; ++i) {
if ((curBit & bitMap[i][0]) != 0) continue;
dfs(arr, bitMap, ans, i + 1, curLen + bitMap[i][1],
curBit | bitMap[i][0]);
}
}
}
class E {
// Runtime: 2126 ms, faster than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
// Memory Usage: 207.2 MB, less than 100.00% of Dart online submissions for Maximum Length of a Concatenated String with Unique Characters.
int maxLength(List<String> arr) {
List<int> result = List.filled(1, 0);
maxLengthUnique(arr, result, 0, "");
return result[0];
}
void maxLengthUnique(
List<String> arr, List<int> result, int index, String current) {
int i = 0, n = arr.length;
// We use queue to store all the combinations possible!
Queue<String> q = Queue();
q.add("");
//Loop for all the strings in array.
while (i < n) {
int size = q.length;
//Loop till all the elements in Queue are appended with "" and the string 'str'
for (int loop = 0; loop < size; loop++) {
String temp = q.removeFirst(); // temp = ""
String dontConsider = temp; // dontConsider = ""
String consider = temp +
arr.elementAt(
i); // consider = "un" --> Aboe 3 steps Repeated till the last element.
// Function call to calculate the unique characters
if (uniqueCharacters(dontConsider) > result[0]) {
result[0] = dontConsider.length;
}
// Function call to calculate the unique characters
if (uniqueCharacters(consider) > result[0]) {
result[0] = consider.length;
}
// Adding the new strings to our queue again.
q.add(dontConsider);
q.add(consider);
}
i++;
}
}
int uniqueCharacters(String string) {
List<int> alpha = List.filled(26, 0);
for (String character in string.split(""))
if (alpha[character.codeUnitAt(0) - 'a'.codeUnitAt(0)]++ > 0) return -1;
return string.length;
}
}