A15153 | Stone Age Problem
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Once upon a time Mike and Mike decided to come up with an outstanding problem for some stage of ROI (rare olympiad in informatics). One of them came up with a problem prototype but another stole the idea and proposed that problem for another stage of the same olympiad. Since then the first Mike has been waiting for an opportunity to propose the original idea for some other contest... Mike waited until this moment!
You are given an array $a$ of $n$ integers. You are also given $q$ queries of two types:
- Replace $i$ -th element in the array with integer $x$ .
- Replace each element in the array with integer $x$ .
After performing each query you have to calculate the sum of all elements in the array.
You are given an array $a$ of $n$ integers. You are also given $q$ queries of two types:
- Replace $i$ -th element in the array with integer $x$ .
- Replace each element in the array with integer $x$ .
After performing each query you have to calculate the sum of all elements in the array.
输入格式
The first line contains two integers $n$ and $q$ ( $1 \le n, q \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, \ldots, a_n$ ( $1 \le a_i \le 10^9$ ) — elements of the array $a$ .
Each of the following $q$ lines contains a description of the corresponding query. Description begins with integer $t$ ( $t \in \{1, 2\}$ ) which denotes a type of the query:
- If $t = 1$ , then two integers $i$ and $x$ are following ( $1 \le i \le n$ , $1 \le x \le 10^9$ ) — position of replaced element and it's new value.
- If $t = 2$ , then integer $x$ is following ( $1 \le x \le 10^9$ ) — new value of each element in the array.
The second line contains $n$ integers $a_1, \ldots, a_n$ ( $1 \le a_i \le 10^9$ ) — elements of the array $a$ .
Each of the following $q$ lines contains a description of the corresponding query. Description begins with integer $t$ ( $t \in \{1, 2\}$ ) which denotes a type of the query:
- If $t = 1$ , then two integers $i$ and $x$ are following ( $1 \le i \le n$ , $1 \le x \le 10^9$ ) — position of replaced element and it's new value.
- If $t = 2$ , then integer $x$ is following ( $1 \le x \le 10^9$ ) — new value of each element in the array.
输出格式
Print $q$ integers, each on a separate line. In the $i$ -th line print the sum of all elements in the array after performing the first $i$ queries.
输入输出样例
输入 #1
5 5 1 2 3 4 5 1 1 5 2 10 1 5 11 1 4 1 2 1
输出 #1
19 50 51 42 5
Consider array from the example and the result of performing each query:
1. Initial array is $[1, 2, 3, 4, 5]$ .
2. After performing the first query, array equals to $[5, 2, 3, 4, 5]$ . The sum of all elements is $19$ .
3. After performing the second query, array equals to $[10, 10, 10, 10, 10]$ . The sum of all elements is $50$ .
4. After performing the third query, array equals to $[10, 10, 10, 10, 11$ \]. The sum of all elements is $51$ .
5. After performing the fourth query, array equals to $[10, 10, 10, 1, 11]$ . The sum of all elements is $42$ .
6. After performing the fifth query, array equals to $[1, 1, 1, 1, 1]$ . The sum of all elements is $5$ .
1. Initial array is $[1, 2, 3, 4, 5]$ .
2. After performing the first query, array equals to $[5, 2, 3, 4, 5]$ . The sum of all elements is $19$ .
3. After performing the second query, array equals to $[10, 10, 10, 10, 10]$ . The sum of all elements is $50$ .
4. After performing the third query, array equals to $[10, 10, 10, 10, 11$ \]. The sum of all elements is $51$ .
5. After performing the fourth query, array equals to $[10, 10, 10, 1, 11]$ . The sum of all elements is $42$ .
6. After performing the fifth query, array equals to $[1, 1, 1, 1, 1]$ . The sum of all elements is $5$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted