-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSUFFIX_ARRAY_1.cpp
104 lines (97 loc) · 1.84 KB
/
SUFFIX_ARRAY_1.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#include<bits/stdc++.h>
using namespace std;
#define f(i,a,b) for(i=a;i<b;i++)
#define rep(i,n) f(i,0,n)
#define fd(i,a,b) for(i=a;i>=b;i--)
#define ll long long int
#define vi vector<int>
#define vll vector<lli>
#define pb push_back
#define all(v) v.begin(),v.end()
#define endl "\n"
ll gcd(ll a, ll b){
if(a == 0){
return b;
}
if(b==0){
return a;
}
if(a == b){
return a;
}
if(a > b){
return gcd(a-b,b);
}else{
return gcd(a,b-a);
}
}
bool isprime(ll n){
if(n == 1) return false;
ll i;
for(i = 2; i*i<=n; i++){
if(n%i==0) return false;
}
return true;
}
void solve(){
string str;
cin >> str;
str += "$";
int i;
int n = str.size();
vector<int> p(n), c(n);
int k = 0;
// k =0;
vector<pair<char,int>> a(n);
rep(i,n){
a[i] = {str[i],i};
}
sort(all(a));
rep(i,n){
p[i] = a[i].second;
}
c[p[0]] = 0;
f(i,1,n){
if(a[i].first == a[i-1].first){
c[p[i]] = c[p[i-1]];
}else{
c[p[i]] = c[p[i-1]] + 1;
}
}
while((1<<k) < n){
// k -> k + 1
vector<pair<pair<int,int>, int>> b(n);
rep(i,n){
b[i] = {{c[i],c[(i+(1<<k))%n]},i};
}
sort(all(b));
rep(i,n){
p[i] = b[i].second;
}
c[p[0]] = 0;
f(i,1,n){
if(b[i].first == b[i-1].first){
c[p[i]] = c[p[i-1]];
}else{
c[p[i]] = c[p[i-1]]+1;
}
}
k++;
}
rep(i,n){
cout << p[i] << " ";
}
cout << endl;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int test_cases;
test_cases = 1;
//cin >> test_cases;
while(test_cases--){
solve();
}
return 0;
}