There are $n$ buildings on a street, numbered $1,2,\dots,n$ . Each building has a pizzeria and an apartment.
The pizza price in building $k$ is $p_k$ . If you order a pizza from building $a$ to building $b$ , its price (with delivery) is $p_a+|a-b|$ .
Your task is to process two types of queries:
The pizza pricep_kin buildingkbecomesx.You are in buildingkand want to order a pizza. What is the minimum price?
The first input line has two integers $n$ and $q$ : the number of buildings and queries.
The second line has $n$ integers $p_1,p_2,\dots,p_n$ : the initial pizza price in each building.
Finally, there are $q$ lines that describe the queries. Each line is either "1 $k$ $x$ " or "2 $k$ ".
Print the answer for each query of type 2.
6 3 8 6 4 5 7 5 2 2 1 5 1 2 2
· \n · · · · · \n · \n · · \n · \n
5 4
\n \n