题库练习 Range Update Point Query
← 上一题 下一题 →

A15704 | Range Update Point Query

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

题目描述

Given an array $a_1, a_2, \dots, a_n$ , you need to handle a total of $q$ updates and queries of two types:

- $1$ $l$ $r$ — for each index $i$ with $l \leq i \leq r$ , update the value of $a_i$ to the sum of the digits of $a_i$ .
- $2$ $x$ — output $a_x$ .

输入格式

The first line of the input contains an integer $t$ ( $1 \leq t \leq 1000$ ) — the number of testcases.

The first line of each test case contains two integers $n$ and $q$ ( $1 \le n, q \le 2 \cdot 10^5$ ) — the size of the array and the number of queries, respectively.

The second line of each test case contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^9$ ).

The next $q$ lines of each test case are of two forms:

- $1$ $l$ $r$ ( $1 \leq l \leq r \leq n$ ) — it means, for each index $i$ with $l \leq i \leq r$ , you should update the value of $a_i$ to the sum of its digits.
- $2$ $x$ ( $1 \leq x \leq n$ ) — it means you should output $a_x$ .

There is at least one query of the second type.

The sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .

The sum of $q$ over all test cases does not exceed $2 \cdot 10^5$ .

输出格式

For each test case, output the answers of queries of the second type, in the order they are given.

输入输出样例

输入 #1
3
5 8
1 420 69 1434 2023
1 2 3
2 2
2 3
2 4
1 2 5
2 1
2 3
2 5
2 3
9999 1000
1 1 2
2 1
2 2
1 1
1
2 1
输出 #1
6
15
1434
1
6
7
36
1
1
C++ 编辑器
输入
输出