题库练习 Sum Queries?
← 上一题 下一题 →

A12956 | Sum Queries?

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

题目描述

Let's define a balanced multiset the following way. Write down the sum of all elements of the multiset in its decimal representation. For each position of that number check if the multiset includes at least one element such that the digit of the element and the digit of the sum at that position are the same. If that holds for every position, then the multiset is balanced. Otherwise it's unbalanced.

For example, multiset $\{20, 300, 10001\}$ is balanced and multiset $\{20, 310, 10001\}$ is unbalanced:

![](/uploads/acgo/image/5cb10b1c3923605e_6fb37af0e18c.jpeg)The red digits mark the elements and the positions for which these elements have the same digit as the sum. The sum of the first multiset is $10321$ , every position has the digit required. The sum of the second multiset is $10331$ and the second-to-last digit doesn't appear in any number, thus making the multiset unbalanced.

You are given an array $a_1, a_2, \dots, a_n$ , consisting of $n$ integers.

You are asked to perform some queries on it. The queries can be of two types:

- $1~i~x$ — replace $a_i$ with the value $x$ ;
- $2~l~r$ — find the unbalanced subset of the multiset of the numbers $a_l, a_{l + 1}, \dots, a_r$ with the minimum sum, or report that no unbalanced subset exists.

Note that the empty multiset is balanced.

For each query of the second type print the lowest sum of the unbalanced subset. Print -1 if no unbalanced subset exists.

输入格式

The first line contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the number of elements in the array and the number of queries, respectively.

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

Each of the following $m$ lines contains a query of one of two types:

- $1~i~x$ ( $1 \le i \le n$ , $1 \le x < 10^9$ ) — replace $a_i$ with the value $x$ ;
- $2~l~r$ ( $1 \le l \le r \le n$ ) — find the unbalanced subset of the multiset of the numbers $a_l, a_{l + 1}, \dots, a_r$ with the lowest sum, or report that no unbalanced subset exists.

It is guaranteed that there is at least one query of the second type.

输出格式

For each query of the second type print the lowest sum of the unbalanced subset. Print -1 if no unbalanced subset exists.

输入输出样例

输入 #1
4 5
300 10001 20 20
2 1 3
1 1 310
2 1 3
2 3 3
2 3 4
输出 #1
-1
330
-1
40
C++ 编辑器
输入
输出