CF1847F.The Boss's Identity

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

While tracking Diavolo's origins, Giorno receives a secret code from Polnareff. The code can be represented as an infinite sequence of positive integers: $a_1, a_2, \dots $ . Giorno immediately sees the pattern behind the code. The first nn numbers a1,a2,,ana_1, a_2, \dots, a_n are given. For i>ni > n the value of aia_i is (ain  ain+1)(a_{i-n}\ |\ a_{i-n+1}) , where | denotes the bitwise OR operator.

Pieces of information about Diavolo are hidden in qq questions. Each question has a positive integer vv associated with it and its answer is the smallest index ii such that ai>va_i > v . If no such ii exists, the answer is 1-1 . Help Giorno in answering the questions!

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t100001 \le t \le 10\,000 ). The description of the test cases follows.

The first line of each test case contains two integers nn and qq ( 2n21052 \leq n \leq 2 \cdot 10^5 , 1q21051 \leq q \leq 2 \cdot 10^5 ).

The second line of each test case contains nn integers a1,a2,,ana_1,a_2,\ldots,a_n ( 0ai1090 \leq a_i \leq 10^9 ) — the parts of the code which define the pattern.

The ii -th line of the next qq lines contain a single integer viv_i ( 0vi1090 \leq v_i \leq 10^9 ) — the question Giorno asks you.

The sum of nn and qq over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

Print qq numbers. The ii -th number is the answer to the ii -th question asked by Giorno.

输入输出样例

  • 输入#1

    3
    2 3
    2 1
    1
    2
    3
    4 5
    0 2 1 3
    0
    1
    2
    3
    4
    5 5
    1 2 3 4 5
    7
    2
    6
    0
    4

    输出#1

    1
    3
    -1
    2
    2
    4
    -1
    -1
    -1
    3
    8
    1
    5

说明/提示

In the first test case, a=[2,1,3,3,]a = [2,1,3,3,\ldots] .

  • For the first question, a1=2a_1=2 is the element with the smallest index greater than 11 .
  • For the second question, a3=3a_3=3 is the element with the smallest index greater than 22 .
  • For the third question, there is no index ii such that ai>3a_i > 3 .
首页