| 1 | struct entry { ii nr; int p; }; |
| 2 | bool operator <(const entry &a, const entry &b) { |
| 3 | return a.nr < b.nr; } |
| 4 | struct suffix_array { |
| 5 | string s; int n; vvi P; vector<entry> L; vi idx; |
| 6 | suffix_array(string _s) : s(_s), n(size(s)) { |
nothing calls this directly
no outgoing calls
no test coverage detected