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 1 and length n , some positions of which are occupied by 1 by 1 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 0 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 1000000007 ( 109+7 ).
输入格式
The first line contains one integer t ( 1≤t≤1000 ) — the number of test cases. Then t cases follow.
The first line of each test case contains one integer n ( 2≤n≤2000 ) — the size of the Lego strip.
The second line of each test case contains a string s of length n , 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 t of length n , 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 n over all test cases doesn't exceed 2000 .
输出格式
For each test case, output a single integer — the answer to the problem modulo 1000000007 ( 109+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, 00 is the only possible starting state, and 11 is the only possible ending state. It takes exactly one operation to change 00 to 11 .
For the second test case, some of the possible starting and ending state pairs are:
- (000,011) — takes 1 operation.
- (001,100) — takes 2 operations.
- (010,000) — takes 0 operations, as it's impossible to achieve the ending state.