← Home
write a go solution for Description:
You are given a board of size 2xn (2 rows, n columns). Some cells of the board contain chips. The chip is represented as '*', and an empty space is represented as '.'. It is guaranteed that there is at least one chip on the board.

In one move, you can choose any chip and move it to any adjacent (by side) cell of the board (if this cell is inside the board). It means that if the chip is in the first row, you can move it left, right or down (but it shouldn't leave the board). Same, if the chip is in the second row, you can move it left, right or up.

If the chip moves to the cell with another chip, the chip in the destination cell disappears (i. e. our chip captures it).

Your task is to calculate the minimum number of moves required to leave exactly one chip on the board.

You have to answer t independent test cases.

Input Format:
The first line of the input contains one integer t (1<=t<=2*10^4) — the number of test cases. Then t test cases follow.

The first line of the test case contains one integer n (1<=n<=2*10^5) — the length of the board. The second line of the test case contains the string s_1 consisting of n characters '*' (chip) and/or '.' (empty cell). The third line of the test case contains the string s_2 consisting of n characters '*' (chip) and/or '.' (empty cell).

Additional constraints on the input:

- in each test case, there is at least one chip on a board;
- the sum of n over all test cases does not exceed 2*10^5 (sumn<=2*10^5).

Output Format:
For each test case, print one integer — the minimum number of moves required to leave exactly one chip on the board.

Note:
None. Output only the code with no comments, explanation, or additional text.