CF1681B.Card Trick

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Monocarp has just learned a new card trick, and can't wait to present it to you. He shows you the entire deck of nn cards. You see that the values of cards from the topmost to the bottommost are integers a1,a2,,ana_1, a_2, \dots, a_n , and all values are different.

Then he asks you to shuffle the deck mm times. With the jj -th shuffle, you should take bjb_j topmost cards and move them under the remaining (nbj)(n - b_j) cards without changing the order.

And then, using some magic, Monocarp tells you the topmost card of the deck. However, you are not really buying that magic. You tell him that you know the topmost card yourself. Can you surprise Monocarp and tell him the topmost card before he shows it?

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of testcases.

The first line of each testcase contains a single integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ) — the number of cards in the deck.

The second line contains nn pairwise distinct integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \le a_i \le n ) — the values of the cards.

The third line contains a single integer mm ( 1m21051 \le m \le 2 \cdot 10^5 ) — the number of shuffles.

The fourth line contains mm integers b1,b2,,bmb_1, b_2, \dots, b_m ( 1bjn11 \le b_j \le n - 1 ) — the amount of cards that are moved on the jj -th shuffle.

The sum of nn over all testcases doesn't exceed 21052 \cdot 10^5 . The sum of mm over all testcases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each testcase, print a single integer — the value of the card on the top of the deck after the deck is shuffled mm times.

输入输出样例

  • 输入#1

    3
    2
    1 2
    3
    1 1 1
    4
    3 1 4 2
    2
    3 1
    5
    2 1 5 4 3
    5
    3 2 1 2 1

    输出#1

    2
    3
    3

说明/提示

In the first testcase, each shuffle effectively swaps two cards. After three swaps, the deck will be [2,1][2, 1] .

In the second testcase, the second shuffle cancels what the first shuffle did. First, three topmost cards went underneath the last card, then that card went back below the remaining three cards. So the deck remained unchanged from the initial one — the topmost card has value 33 .

首页