eolymp
bolt
Try our new interface for solving problems
Məsələlər

Suffix reconstruction

Suffix reconstruction

Given a text \textbf{s\[1..n\]} of length \textbf{n}, we create its suffix array by taking all its suffixes: \textbf{s\[1..n\], s\[2..n\], ..., s\[n..n\]} and sorting them lexicographically. As a result we get a sorted list of suffixes: \textbf{s\[p(1)..n\], s\[p(2)..n\], ..., s\[p(n)..n\]} and call the sequence \textbf{p(1)}, \textbf{p(2)}, ..., \textbf{p(n)} the suffix array of \textbf{s\[1..n\]}. For example, if \textbf{s = abbaabab}, the sorted list of all suffixes becomes: \textbf{aabab, ab, abab, abbaabab, b, baabab, bab, bbaabab} and the suffix array is \textbf{4}, \textbf{7}, \textbf{5}, \textbf{1}, \textbf{8}, \textbf{3}, \textbf{6}, \textbf{2}. It turns out that it is possible to construct this array in a linear time. Your task will be completely different, though: given \textbf{p(1)}, \textbf{p(2)}, \textbf{p(3)}, ..., \textbf{p(n)} you should check if there exist at least one text consisting of lowercase letters of the English alphabet for which this sequence is the suffix array. If so, output any such text. Otherwise output \textbf{-1}. \InputFile The input contains several descriptions of suffix arrays. The first line contains the number of descriptions \textbf{t} (\textbf{t} ≤ \textbf{100}). Each description begins with a line containing the length of both the text and the array \textbf{n} (\textbf{1} ≤ \textbf{n} ≤ \textbf{500000}). Next line contains integers \textbf{p(1)}, \textbf{p(2)}, ..., \textbf{p(n)}. You may assume that \textbf{1} ≤ \textbf{p(i)} ≤ \textbf{n} and no value of \textbf{p(i)} occurs twice. Total size of the input will not exceed \textbf{50} MB. \OutputFile For each test case output any text resulting in the given suffix array. In case there is no such text consisting of lowercase letters of the English alphabet, output \textbf{-1}.
Zaman məhdudiyyəti 3 saniyə
Yaddaşı istafadə məhdudiyyəti 32 MiB
Giriş verilənləri #1
6
2 
1 2 
2 
2 1 
3 
2 3 1 
6 
3 4 5 1 2 6 
14 
3 10 2 12 14 5 13 4 1 8 6 11 7 9 
7 
5 1 7 4 3 2 6
Çıxış verilənləri #1
ab
aa
bab
suffix
reconstruction
issofun
Mənbə Central European Programming Contest 2008, Wroclaw, Poland, November 28-30, 2008