-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathE. Estruturando o coffee-break.cpp
82 lines (70 loc) · 1.78 KB
/
E. Estruturando o coffee-break.cpp
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
#include <bits/stdc++.h>
using namespace std;
vector<int> sort_cyclic_shifts(string const& s) {
int n = s.size();
const int alphabet = 128;
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(string s) {
s += "$";
vector<int> p = sort_cyclic_shifts(s);
p.erase(p.begin());
return p;
}
int32_t main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
string s;
cin >> s;
auto xs = suffix_array(s);
vector<int> jmp(s.size());
set<int> st;
for (auto &xi : xs) {
auto it = st.lower_bound(xi);
if (st.empty() or it == st.end()) {
jmp[xi] = s.size();
}
else {
jmp[xi] = *it;
}
st.emplace(xi);
}
cout << "|";
for (int i = 0; i < s.size(); ) {
int ti = i;
while (ti < jmp[i]) cout << s[ti], ti++;
i = ti;
cout << "|";
}
}
// AC, strings, suffix array