-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
similar-string-groups.py
64 lines (54 loc) · 1.93 KB
/
similar-string-groups.py
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
# Time: O(n^2 * l) ~ O(n * l^4)
# Space: O(n) ~ O(n * l^3)
import collections
import itertools
class UnionFind(object):
def __init__(self, n):
self.set = range(n)
self.__size = n
def find_set(self, x):
if self.set[x] != x:
self.set[x] = self.find_set(self.set[x]) # path compression.
return self.set[x]
def union_set(self, x, y):
x_root, y_root = map(self.find_set, (x, y))
if x_root == y_root:
return False
self.set[min(x_root, y_root)] = max(x_root, y_root)
self.__size -= 1
return True
def size(self):
return self.__size
class Solution(object):
def numSimilarGroups(self, A):
def isSimilar(a, b):
diff = 0
for x, y in itertools.izip(a, b):
if x != y:
diff += 1
if diff > 2:
return False
return diff == 2
N, L = len(A), len(A[0])
union_find = UnionFind(N)
if N < L*L:
for (i1, word1), (i2, word2) in \
itertools.combinations(enumerate(A), 2):
if isSimilar(word1, word2):
union_find.union_set(i1, i2)
else:
buckets = collections.defaultdict(list)
lookup = set()
for i in xrange(len(A)):
word = list(A[i])
if A[i] not in lookup:
buckets[A[i]].append(i)
lookup.add(A[i])
for j1, j2 in itertools.combinations(xrange(L), 2):
word[j1], word[j2] = word[j2], word[j1]
buckets["".join(word)].append(i)
word[j1], word[j2] = word[j2], word[j1]
for word in A: # Time: O(n * l^4)
for i1, i2 in itertools.combinations(buckets[word], 2):
union_find.union_set(i1, i2)
return union_find.size()