A16380 | Array Repetition
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Jayden has an array $a$ which is initially empty. There are $n$ operations of two types he must perform in the given order.
1. Jayden appends an integer $x$ ( $1 \leq x \leq n$ ) to the end of array $a$ .
2. Jayden appends $x$ copies of array $a$ to the end of array $a$ . In other words, array $a$ becomes $[a,\underbrace{a,\ldots,a}_{x}]$ . It is guaranteed that he has done at least one operation of the first type before this.
Jayden has $q$ queries. For each query, you must tell him the $k$ -th element of array $a$ . The elements of the array are numbered from $1$ .
1. Jayden appends an integer $x$ ( $1 \leq x \leq n$ ) to the end of array $a$ .
2. Jayden appends $x$ copies of array $a$ to the end of array $a$ . In other words, array $a$ becomes $[a,\underbrace{a,\ldots,a}_{x}]$ . It is guaranteed that he has done at least one operation of the first type before this.
Jayden has $q$ queries. For each query, you must tell him the $k$ -th element of array $a$ . The elements of the array are numbered from $1$ .
输入格式
Each test consists of multiple test cases. The first line contains a single integer $t$ ( $1 \leq t \leq 5000$ ) — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers $n$ and $q$ ( $1 \leq n, q \leq 10^5$ ) — the number of operations and the number of queries.
The following $n$ lines describe the operations. Each line contains two integers $b$ and $x$ ( $b \in \{1, 2\}$ ), where $b$ denotes the type of operation. If $b=1$ , then $x$ ( $1 \leq x \leq n$ ) is the integer Jayden appends to the end of the array. If $b=2$ , then $x$ ( $1 \leq x \leq 10^9$ ) is the number of copies Jayden appends to the end of the array.
The next line of each test case contains $q$ integers $k_1, k_2, \ldots, k_q$ ( $1 \leq k_i \leq \min(10^{18}, c)$ ), which denote the queries, where $c$ is the size of the array after finishing all $n$ operations.
It is guaranteed that the sum of $n$ and the sum of $q$ over all test cases does not exceed $10^5$ .
The first line of each test case contains two integers $n$ and $q$ ( $1 \leq n, q \leq 10^5$ ) — the number of operations and the number of queries.
The following $n$ lines describe the operations. Each line contains two integers $b$ and $x$ ( $b \in \{1, 2\}$ ), where $b$ denotes the type of operation. If $b=1$ , then $x$ ( $1 \leq x \leq n$ ) is the integer Jayden appends to the end of the array. If $b=2$ , then $x$ ( $1 \leq x \leq 10^9$ ) is the number of copies Jayden appends to the end of the array.
The next line of each test case contains $q$ integers $k_1, k_2, \ldots, k_q$ ( $1 \leq k_i \leq \min(10^{18}, c)$ ), which denote the queries, where $c$ is the size of the array after finishing all $n$ operations.
It is guaranteed that the sum of $n$ and the sum of $q$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, output $q$ integers — answers to Jayden's queries.
输入输出样例
输入 #1
4 5 10 1 1 1 2 2 1 1 3 2 3 1 2 3 4 5 6 14 15 16 20 10 10 1 3 1 8 2 15 1 6 1 9 1 1 2 6 1 1 2 12 2 10 32752 25178 3198 3199 2460 2461 31450 33260 9016 4996 12 5 1 6 1 11 2 392130334 1 4 2 744811750 1 10 1 5 2 209373780 2 178928984 1 3 2 658326464 2 1000000000 914576963034536490 640707385283752918 636773368365261971 584126563607944922 1000000000000000000 2 2 1 1 1 2 1 2
输出 #1
1 2 1 2 3 1 2 3 1 3 9 8 1 3 1 3 6 3 8 8 11 11 11 10 11 1 2
In the first test case:
- After the first operation $a = [1]$ ;
- After the second operation $a = [1, 2]$ ;
- After the third operation $a = [1, 2, 1, 2]$ ;
- After the fourth operation $a = [1, 2, 1, 2, 3]$ ;
- After the fifth operation $a = [1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3]$ .
In the fourth test case, after all operations $a = [1, 2]$ .
- After the first operation $a = [1]$ ;
- After the second operation $a = [1, 2]$ ;
- After the third operation $a = [1, 2, 1, 2]$ ;
- After the fourth operation $a = [1, 2, 1, 2, 3]$ ;
- After the fifth operation $a = [1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3, 1, 2, 1, 2, 3]$ .
In the fourth test case, after all operations $a = [1, 2]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted