CF1680E.Moving Chips
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a board of size 2×n ( 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.
输入格式
The first line of the input contains one integer t ( 1≤t≤2⋅104 ) — the number of test cases. Then t test cases follow.
The first line of the test case contains one integer n ( 1≤n≤2⋅105 ) — the length of the board. The second line of the test case contains the string s1 consisting of n characters '*' (chip) and/or '.' (empty cell). The third line of the test case contains the string s2 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⋅105 ( ∑n≤2⋅105 ).
输出格式
For each test case, print one integer — the minimum number of moves required to leave exactly one chip on the board.
输入输出样例
输入#1
5 1 * . 2 .* ** 3 *.* .*. 4 **.* **.. 5 **... ...**
输出#1
0 2 3 5 5