CF1615F.LEGOndary Grandmaster

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

After getting bored by playing with crayons, you decided to switch to Legos! Today, you're working with a long strip, with height 11 and length nn , some positions of which are occupied by 11 by 11 Lego pieces.

In one second, you can either remove two adjacent Lego pieces from the strip (if both are present), or add two Lego pieces to adjacent positions (if both are absent). You can only add or remove Lego's at two adjacent positions at the same time, as otherwise your chubby fingers run into precision issues.

You want to know exactly how much time you'll spend playing with Legos. You value efficiency, so given some starting state and some ending state, you'll always spend the least number of seconds to transform the starting state into the ending state. If it's impossible to transform the starting state into the ending state, you just skip it (so you spend 00 seconds).

The issue is that, for some positions, you don't remember whether there were Legos there or not (in either the starting state, the ending state, or both). Over all pairs of (starting state, ending state) that are consistent with your memory, find the total amount of time it will take to transform the starting state to the ending state. Print this value modulo 10000000071\,000\,000\,007 ( 109+710^9 + 7 ).

输入格式

The first line contains one integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases. Then tt cases follow.

The first line of each test case contains one integer nn ( 2n20002 \leq n \leq 2000 ) — the size of the Lego strip.

The second line of each test case contains a string ss of length nn , consisting of the characters 0, 1, and ? — your memory of the starting state:

  • 1 represents a position that definitely has a Lego piece,
  • 0 represents a position that definitely does not have a Lego piece,
  • and ? represents a position that you don't remember.

The third line of each test case contains a string tt of length nn , consisting of the characters 0, 1, and ? — your memory of the ending state. It follows a similar format to the starting state.

It's guaranteed that the sum of nn over all test cases doesn't exceed 20002000 .

输出格式

For each test case, output a single integer — the answer to the problem modulo 10000000071\,000\,000\,007 ( 109+710^9 + 7 ).

输入输出样例

  • 输入#1

    6
    2
    00
    11
    3
    ???
    ???
    3
    ??1
    0?0
    4
    ??0?
    ??11
    5
    ?????
    0??1?
    10
    ?01??01?1?
    ??100?1???

    输出#1

    1
    16
    1
    14
    101
    1674

说明/提示

For the first test case, 0000 is the only possible starting state, and 1111 is the only possible ending state. It takes exactly one operation to change 0000 to 1111 .

For the second test case, some of the possible starting and ending state pairs are:

  • (000,011)(000, 011) — takes 11 operation.
  • (001,100)(001, 100) — takes 22 operations.
  • (010,000)(010, 000) — takes 00 operations, as it's impossible to achieve the ending state.
首页