-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_multimatching_suffix_array.py
50 lines (49 loc) · 1.69 KB
/
string_multimatching_suffix_array.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
# Using suffix array
def smm(s, pp):
def suffix_array_construction(s):
n = len(s)
sa = list(range(n))
ra = [ord(s[i]) for i in range(n)]
k, maxi = 1, max(300, n)
while k < n:
for kk in [k, 0]:
c = [0]*maxi
for i in range(n): c[ra[i+kk] if i+kk<n else 0] += 1
ss, temp = 0, [0]*n
for i in range(maxi): t = c[i]; c[i] = ss; ss += t
for i in range(n):
idx = ra[sa[i]+kk] if sa[i]+kk < n else 0
temp[c[idx]] = sa[i]
c[idx] += 1
sa = temp
temp, r = [0]*n, 0
temp[sa[0]] = r
for i in range(1, n):
r += ra[sa[i]] != ra[sa[i-1]] or ra[sa[i]+k] != ra[sa[i-1]+k]
temp[sa[i]] = r
ra = temp
if ra[sa[n-1]] == n-1: break
k *= 2
return sa
s += '\0'
sa = suffix_array_construction(s)
n = len(s)
matches = []
for p in pp:
m, lo, hi = len(p), 0, n-1
while lo < hi:
mid = (lo+hi)//2
if s[sa[mid]:sa[mid]+m] >= p: hi = mid
else: lo = mid+1
if s[sa[lo]:sa[lo]+m] != p: matches.append([]); continue
l, hi = lo, n-1
while lo < hi:
mid = (lo+hi)//2
if s[sa[mid]:sa[mid]+m] > p: hi = mid
else: lo = mid+1
matches.append(sorted(sa[i] for i in range(l, hi - (s[sa[hi]:sa[hi]+m] != p) + 1)))
return matches
if __name__ == '__main__':
s = 'banana boy likes apple boys'
pp = ['a', 'na', 'boy', 'p', 'orange']
print(smm(s, pp))