Hide

Problem H
Suffix Sorting

Input

The input consists of less than 10 test cases. Each test case begins with a line containing a non-empty string s, of length at most 100000. Then follows a line containing an integer n followed by n integers q1,,qn, where 0qi<length(s), each indicating a query.

Output

For each test case, output a line containing n integers p1,,pn, where pi is the starting position of the qi’th smallest suffix of s.

Sample Input 1 Sample Output 1
popup
5 0 1 2 3 4
Popup
5 0 1 2 3 4
Suffixes are jolly fun, eh old chap?
7 35 3 18 33 26 6 2
1 4 0 2 3
0 1 4 2 3
17 18 19 20 21 22 23
Hide

Please log in to submit a solution to this problem

Log in