#P1706A. Another String Minimization Problem

Another String Minimization Problem

No submission language available for this problem.

Description

You have a sequence a1,a2,,ana_1, a_2, \ldots, a_n of length nn, consisting of integers between 11 and mm. You also have a string ss, consisting of mm characters B.

You are going to perform the following nn operations.

  • At the ii-th (1in1 \le i \le n) operation, you replace either the aia_i-th or the (m+1ai)(m + 1 - a_i)-th character of ss with A. You can replace the character at any position multiple times through the operations.

Find the lexicographically smallest string you can get after these operations.

A string xx is lexicographically smaller than a string yy of the same length if and only if in the first position where xx and yy differ, the string xx has a letter that appears earlier in the alphabet than the corresponding letter in yy.

The first line contains the number of test cases tt (1t20001 \le t \le 2000).

The first line of each test case contains two integers nn and mm (1n,m501 \le n, m \le 50) — the length of the sequence aa and the length of the string ss respectively.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1aim1 \le a_i \le m) — the sequence aa.

For each test case, print a string of length mm — the lexicographically smallest string you can get. Each character of the string should be either capital English letter A or capital English letter B.

Input

The first line contains the number of test cases tt (1t20001 \le t \le 2000).

The first line of each test case contains two integers nn and mm (1n,m501 \le n, m \le 50) — the length of the sequence aa and the length of the string ss respectively.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1aim1 \le a_i \le m) — the sequence aa.

Output

For each test case, print a string of length mm — the lexicographically smallest string you can get. Each character of the string should be either capital English letter A or capital English letter B.

Samples

Sample Input 1

6
4 5
1 1 3 1
1 5
2
4 1
1 1 1 1
2 4
1 3
2 7
7 5
4 5
5 5 3 5

Sample Output 1

ABABA
BABBB
A
AABB
ABABBBB
ABABA

Note

In the first test case, the sequence a=[1,1,3,1]a = [1, 1, 3, 1]. One of the possible solutions is the following.

  • At the 11-st operation, you can replace the 11-st character of ss with A. After it, ss becomes ABBBB.
  • At the 22-nd operation, you can replace the 55-th character of ss with A (since m+1a2=5m+1-a_2=5). After it, ss becomes ABBBA.
  • At the 33-rd operation, you can replace the 33-rd character of ss with A. After it, ss becomes ABABA.
  • At the 44-th operation, you can replace the 11-st character of ss with A. After it, ss remains equal to ABABA.
The resulting string is ABABA. It is impossible to produce a lexicographically smaller string.

In the second test case, you are going to perform only one operation. You can replace either the 22-nd character or 44-th character of ss with A. You can get strings BABBB and BBBAB after the operation. The string BABBB is the lexicographically smallest among these strings.

In the third test case, the only string you can get is A.

In the fourth test case, you can replace the 11-st and 22-nd characters of ss with A to get AABB.

In the fifth test case, you can replace the 11-st and 33-rd characters of ss with A to get ABABBBB.