#P1615C. Menorah

    ID: 6212 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>brute forcegraphsgreedymath*1600

Menorah

No submission language available for this problem.

Description

There are nn candles on a Hanukkah menorah, and some of its candles are initially lit. We can describe which candles are lit with a binary string ss, where the ii-th candle is lit if and only if si=1s_i=1.

Initially, the candle lights are described by a string aa. 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 bb. 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 tt (1t1041\le t\le 10^4) — the number of test cases. Then tt cases follow.

The first line of each test case contains a single integer nn (1n1051\le n\le 10^5) — the number of candles.

The second line contains a string aa of length nn consisting of symbols 0 and 1 — the initial pattern of lights.

The third line contains a string bb of length nn consisting of symbols 0 and 1 — the desired pattern of lights.

It is guaranteed that the sum of nn does not exceed 10510^5.

For each test case, output the minimum number of operations required to transform aa to bb, or 1-1 if it's impossible.

Input

The first line contains an integer tt (1t1041\le t\le 10^4) — the number of test cases. Then tt cases follow.

The first line of each test case contains a single integer nn (1n1051\le n\le 10^5) — the number of candles.

The second line contains a string aa of length nn consisting of symbols 0 and 1 — the initial pattern of lights.

The third line contains a string bb of length nn consisting of symbols 0 and 1 — the desired pattern of lights.

It is guaranteed that the sum of nn does not exceed 10510^5.

Output

For each test case, output the minimum number of operations required to transform aa to bb, or 1-1 if it's impossible.

Samples

Sample Input 1

5
5
11010
11010
2
01
11
3
000
101
9
100010111
101101100
9
001011011
011010101

Sample Output 1

0
1
-1
3
4

Note

In the first test case, the two strings are already equal, so we don't have to perform any operations.

In the second test case, we can perform a single operation selecting the second candle to transform 0101 into 1111.

In the third test case, it's impossible to perform any operations because there are no lit candles to select.

In the fourth test case, we can perform the following operations to transform aa into bb:

  1. Select the 77-th candle: 100010111011101100100010{\color{red}1}11\to 011101{\color{red} 1}00.
  2. Select the 22-nd candle: 0111011001100100110{\color{red} 1}1101100\to 1{\color{red} 1}0010011.
  3. Select the 11-st candle: 110010011101101100{\color{red}1}10010011\to {\color{red}1}01101100.

In the fifth test case, we can perform the following operations to transform aa into bb:

  1. Select the 66-th candle: 00101101111010110000101{\color{red}1}011\to 11010{\color{red}1}100
  2. Select the 22-nd candle: 1101011000110100111{\color{red}1}0101100\to 0{\color{red}1}1010011
  3. Select the 88-th candle: 0110100111001011100110100{\color{red}1}1\to 1001011{\color{red}1}0
  4. Select the 77-th candle: 100101110011010101100101{\color{red}1}10\to 011010{\color{red}1}01