#P1381A1. Prefix Flip (Easy Version)

    ID: 3102 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 4 Uploaded By: Tags>constructive algorithmsdata structuresstrings*1300

Prefix Flip (Easy Version)

Description

This is the easy version of the problem. The difference between the versions is the constraint on nn and the required number of operations. You can make hacks only if all versions of the problem are solved.

There are two binary strings aa and bb of length nn (a binary string is a string consisting of symbols 00 and 11). In an operation, you select a prefix of aa, and simultaneously invert the bits in the prefix (00 changes to 11 and 11 changes to 00) and reverse the order of the bits in the prefix.

For example, if a=001011a=001011 and you select the prefix of length 33, it becomes 011011011011. Then if you select the entire string, it becomes 001001001001.

Your task is to transform the string aa into bb in at most 3n3n operations. It can be proved that it is always possible.

The first line contains a single integer tt (1t10001\le t\le 1000)  — the number of test cases. Next 3t3t lines contain descriptions of test cases.

The first line of each test case contains a single integer nn (1n10001\le n\le 1000)  — the length of the binary strings.

The next two lines contain two binary strings aa and bb of length nn.

It is guaranteed that the sum of nn across all test cases does not exceed 10001000.

For each test case, output an integer kk (0k3n0\le k\le 3n), followed by kk integers p1,,pkp_1,\ldots,p_k (1pin1\le p_i\le n). Here kk is the number of operations you use and pip_i is the length of the prefix you flip in the ii-th operation.

Input

The first line contains a single integer tt (1t10001\le t\le 1000)  — the number of test cases. Next 3t3t lines contain descriptions of test cases.

The first line of each test case contains a single integer nn (1n10001\le n\le 1000)  — the length of the binary strings.

The next two lines contain two binary strings aa and bb of length nn.

It is guaranteed that the sum of nn across all test cases does not exceed 10001000.

Output

For each test case, output an integer kk (0k3n0\le k\le 3n), followed by kk integers p1,,pkp_1,\ldots,p_k (1pin1\le p_i\le n). Here kk is the number of operations you use and pip_i is the length of the prefix you flip in the ii-th operation.

Sample Input 1

5
2
01
10
5
01011
11100
2
01
01
10
0110011011
1000110100
1
0
1

Sample Output 1

3 1 2 1
6 5 2 5 3 1 2
0
9 4 1 2 10 4 1 2 1 5
1 1

Note

In the first test case, we have 0111001001\to 11\to 00\to 10.

In the second test case, we have 0101100101111010100010100001001110001011\to 00101\to 11101\to 01000\to 10100\to 00100\to 11100.

In the third test case, the strings are already the same. Another solution is to flip the prefix of length 22, which will leave aa unchanged.