Problem7604--[CSES Problem Set] Range Update Queries

7604: [CSES Problem Set] Range Update Queries

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

Given an array of $n$ integers, your task is to process $q$ queries of the following types:
  1. increase each value in range $[a,b]$ by $u$
  2. what is the value at position $k$?

Input

The first input line has two integers $n$ and $q$: the number of values and queries.
The second line has $n$ integers $x_1,x_2,\dots,x_n$: the array values.
Finally, there are $q$ lines describing the queries. Each line has three integers: either "1 a b u" or "2 k".

Output

Print the result of each query of type 2.

Constraints

$1≤n,q≤2⋅10^5$
$1 \le x_i, u \le 10^9$
$1 \le k \le n$
$1 \le a \le b \le n$

Sample 1 Input

8 3
3 2 4 5 1 1 5 3
2 4
1 2 5 1
2 4

Sample 1 Output

5
6

HINT

相同题目:CSES 1651

Source/Category