GUPTA MECHANICAL

IN THIS WEBSITE I CAN TELL ALL ABOUT TECH. TIPS AND TRICKS APP REVIEWS AND UNBOXINGS ALSO TECH. NEWS .............

Friday 13 May 2022

Moving Chips Codeforces Solution | Codeforces Problem Solution 2022

E. Moving Chips
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Solution Click Below:-  CLICK HERE

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

The first line of the input contains one integer t (1t2104) — the number of test cases. Then t test cases follow.

The first line of the test case contains one integer n (1n2105) — 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 2105 (n2105).
Output

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

Join Now for Solution:- 

No comments:

Post a Comment