Created
March 31, 2021 16:59
-
-
Save Sohaib03/0f63088522826261b99218bce358e7e2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
struct SuffixArray | |
{ | |
vector<int> arr, lcp; | |
SuffixArray(string s) { | |
arr = suffix_array_construction(s); | |
s.pop_back(); | |
lcp = lcp_construction(s, arr); | |
} | |
int size() { | |
return arr.size(); | |
} | |
int operator[](size_t pos) { | |
return arr[pos]; | |
} | |
vector<int> sort_cyclic_shifts(string const& s) { | |
int n = s.size(); | |
const int alphabet = 256; | |
vector<int> p(n), c(n), cnt(max(alphabet, n), 0); | |
for (int i = 0; i < n; i++) | |
cnt[s[i]]++; | |
for (int i = 1; i < alphabet; i++) | |
cnt[i] += cnt[i-1]; | |
for (int i = 0; i < n; i++) | |
p[--cnt[s[i]]] = i; | |
c[p[0]] = 0; | |
int classes = 1; | |
for (int i = 1; i < n; i++) { | |
if (s[p[i]] != s[p[i-1]]) | |
classes++; | |
c[p[i]] = classes - 1; | |
} | |
vector<int> pn(n), cn(n); | |
for (int h = 0; (1 << h) < n; ++h) { | |
for (int i = 0; i < n; i++) { | |
pn[i] = p[i] - (1 << h); | |
if (pn[i] < 0) | |
pn[i] += n; | |
} | |
fill(cnt.begin(), cnt.begin() + classes, 0); | |
for (int i = 0; i < n; i++) | |
cnt[c[pn[i]]]++; | |
for (int i = 1; i < classes; i++) | |
cnt[i] += cnt[i-1]; | |
for (int i = n-1; i >= 0; i--) | |
p[--cnt[c[pn[i]]]] = pn[i]; | |
cn[p[0]] = 0; | |
classes = 1; | |
for (int i = 1; i < n; i++) { | |
pair<int, int> cur = {c[p[i]], c[(p[i] + (1 << h)) % n]}; | |
pair<int, int> prev = {c[p[i-1]], c[(p[i-1] + (1 << h)) % n]}; | |
if (cur != prev) | |
++classes; | |
cn[p[i]] = classes - 1; | |
} | |
c.swap(cn); | |
} | |
return p; | |
} | |
vector<int> suffix_array_construction(string& s) { | |
s += '$' | |
; | |
vector<int> sorted_shifts = sort_cyclic_shifts(s); | |
sorted_shifts.erase(sorted_shifts.begin()); | |
return sorted_shifts; | |
} | |
vector<int> lcp_construction(string const& s, vector<int> const& p) { | |
int n = s.size(); | |
vector<int> rank(n, 0); | |
for (int i = 0; i < n; i++) | |
rank[p[i]] = i; | |
int k = 0; | |
vector<int> lcp(n-1, 0); | |
for (int i = 0; i < n; i++) { | |
if (rank[i] == n - 1) { | |
k = 0; | |
continue; | |
} | |
int j = p[rank[i] + 1]; | |
while (i + k < n && j + k < n && s[i+k] == s[j+k]) | |
k++; | |
lcp[rank[i]] = k; | |
if (k) | |
k--; | |
} | |
return lcp; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment