CF1615C.Menorah

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入输出样例

  • 输入#1

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

    输出#1

    0
    1
    -1
    3
    4

说明/提示

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
首页