There are
candles on a Hanukkah menorah, and some of its candles are initially lit. We can describe which candles are lit with a binary string , where the -th candle is lit if and only if .
Initially, the candle lights are described by a string . In an operation, you select a candle that is currently lit. By doing so, the candle you selected will remain lit, and every other candle will change (if it was lit, it will become unlit and if it was unlit, it will become lit).
You would like to make the candles look the same as string . Your task is to determine if it is possible, and if it is, find the minimum number of operations required.
The first line contains an integer () — the number of test cases. Then cases follow.
The first line of each test case contains a single integer () — the number of candles.
The second line contains a string of length consisting of symbols 0 and 1 — the initial pattern of lights.
The third line contains a string of length consisting of symbols 0 and 1 — the desired pattern of lights.
It is guaranteed that the sum of does not exceed .
For each test case, output the minimum number of operations required to transform to , or if it's impossible.
5 5 11010 11010 2 01 11 3 000 101 9 100010111 101101100 9 001011011 011010101
0 1 -1 3 4
ConversionConversion EmoticonEmoticon