#Lutece0819. Minimum palindrome
Minimum palindrome
Migrated from Lutece 819 Minimum palindrome
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Setting password is very important, especially when you have so many "interesting'' things in F:\TDDOWNLOAD
.
We define the safety of a password by a value. First, we find all the substrings of the password. Then we calculate the maximum length of those substrings which, at the meantime, is a palindrome.
A palindrome is a string that will be the same when writing backwards. For example, aba
, abba
, abcba
are all palindromes, but abcab
, abab
are not.
A substring of is a continous string cut from . bcd
, cd
are the substrings of abcde
, but acd
, ce
are not. Note that abcde
is also the substring of abcde
.
The smaller the value is, the safer the password will be.
You want to set your password using the first letters from the alphabet, and its length should be . Output a password with the smallest value. If there are multiple solutions, output the lexicographically smallest one.
All the letters are lowercase.
Input
The first line has a number () , indicating the number of test cases.
For each test case, there is a single line with two integers and , as described above. (, )
Output
For test case , output Case #X:
first, then output the best password.
Samples
2
2 2
2 3
Case #1: ab
Case #2: aab
Resources
2013 ACM/ICPC Asia Regional Chengdu Online