题库练习 Mio and Lucky Array
← 上一题 下一题 →

A15206 | Mio and Lucky Array

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Mio has an array $a$ consisting of $n$ integers, and an array $b$ consisting of $m$ integers.

Mio can do the following operation to $a$ :

- Choose an integer $i$ ( $1 \leq i \leq n$ ) that has not been chosen before, then add $1$ to $a_i$ , subtract $2$ from $a_{i+1}$ , add $3$ to $a_{i+2}$ an so on. Formally, the operation is to add $(-1)^{j-i} \cdot (j-i+1) $ to $a_j$ for $i \leq j \leq n$ .

Mio wants to transform $a$ so that it will contain $b$ as a subarray. Could you answer her question, and provide a sequence of operations to do so, if it is possible?

An array $b$ is a subarray of an array $a$ if $b$ can be obtained from $a$ by deletion of several (possibly, zero or all) elements from the beginning and several (possibly, zero or all) elements from the end.

输入格式

The input consists of multiple test cases. The first line contains a single integer $t$ ( $1 \leq t \leq 10^4$ ) — the number of test cases. The description of test cases follows.

The first line of each test case contains one integer $n$ ( $2 \leq n \leq 2 \cdot 10^5$ ) — the number of elements in $a$ .

The second line of the test case contains $n$ integers $a_1, a_2, \cdots, a_n$ ( $-10^5 \leq a_i \leq 10^5$ ), where $a_i$ is the $i$ -th element of $a$ .

The third line of the test case contains one integer $m$ ( $2 \leq m \leq n$ ) — the number of elements in $b$ .

The fourth line of the test case contains $m$ integers $b_1, b_2, \cdots, b_m$ ( $-10^{12} \leq b_i \leq 10^{12}$ ), where $b_i$ is the $i$ -th element of $b$ .

It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .

输出格式

If it is impossible to transform $a$ so that it contains $b$ as a subarray, output $-1$ .

Otherwise, the first line of output should contain an integer $k$ ( $0 \leq k \leq n$ ), the number of operations to be done.

The second line should contain $k$ distinct integers, representing the operations done in order.

If there are multiple solutions, you can output any.

Notice that you do not need to minimize the number of operations.

输入输出样例

输入 #1
5
5
1 2 3 4 5
5
2 0 6 0 10
5
1 2 3 4 5
3
3 5 3
8
-3 2 -3 -4 4 0 1 -2
4
10 -6 7 -7
5
1 2 3 4 5
4
1 10 1 1
5
0 0 0 0 0
2
10 12
输出 #1
1
1 
1
4 
5
1 3 4 6 8 
-1
-1
C++ 编辑器
输入
输出