欢迎来到起遇信息学
起遇信息学正处于上线筹建阶段,以下功能已全部开放免费体验: ✅ 完整题库浏览与代码提交评测(C / C++ / Python / Java 等) ✅ 入门到进阶的系列课程试读、作业与考试 ✅ AI 提示、AI 作业分析等智能助教功能 ✅ 赛事模拟与个人能力报告 ✅ 邮箱注册开放 ⏳ 付费课程订阅与微信/支付宝支付通道 ⏳ 手机号登录,微信扫码登录、微信公众号绑定 使用中如遇任何问题,欢迎通过页面底部 **"联系我们"** 与我们沟通。
CF1681B.Card Trick
Card Trick
Monocarp has just learned a new card trick, and can't wait to present it to you. He shows you the entire deck of cards. You see that the values of cards from the topmost to the bottommost are integers , and all values are different.
Then he asks you to shuffle the deck times. With the -th shuffle, you should take topmost cards and move them under the remaining 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?
Input
The first line contains a single integer () — the number of testcases.
The first line of each testcase contains a single integer () — the number of cards in the deck.
The second line contains pairwise distinct integers () — the values of the cards.
The third line contains a single integer () — the number of shuffles.
The fourth line contains integers () — the amount of cards that are moved on the -th shuffle.
The sum of over all testcases doesn't exceed . The sum of over all testcases doesn't exceed .
Output
For each testcase, print a single integer — the value of the card on the top of the deck after the deck is shuffled times.
Note
In the first testcase, each shuffle effectively swaps two cards. After three swaps, the deck will be .
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 .
Samples
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
2
3
3
在线编程 IDE
建议全屏模式获得最佳体验
| 进入全屏编程 | Alt+E |
| 递交评测 | Ctrl+Enter |
| 注释/取消注释 | Ctrl+/ |
| 缩放字体 | Ctrl+滚轮 |