#Lutece0328. Circular RMQ

Circular RMQ

Migrated from Lutece 328 Circular RMQ

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

You are given circular array a0,a1,,an1a_0, a_1, \cdots , a_{n - 1}. There are two types of operations with it:

  1. inc(lf, rg, v) — this operation increases each element on the segment [lf,rg][lf, rg] (inclusively) by vv;
  2. rmq(lf, rg) — this operation returns minimal value on the segment [lf,rg][lf, rg] (inclusively).

Assume segments to be circular, so if n=5n = 5 and lf=3,rg=1lf = 3, rg = 1, it means the index sequence: 3, 4, 0, 1.

Write program to process given sequence of operations.

Input

The first line contains integer nn (1n2000001\leq  n \leq  200000). The next line contains initial state of the array: a0,a1,,an1a_0, a_1, \cdots , a_{n - 1} ( 106ai106- 10^6 \leq  a_i \leq 10^6), aia_i are integer. The third line contains integer mm (0m2000000 \leq  m \leq  200000), mm — the number of operartons. Next mm lines contain one operation each. If line contains two integer lf,rglf, rg (0lf,rgn10 \leq  lf, rg \leq  n - 1) it means rmq operation, it contains three integers lf,rg,vlf, rg, v (0lf,rgn10 \leq  lf, rg \leq  n - 1, 106v106-10^6 \leq  v\leq 10^6) — inc operation.

Output

For each rmq operation write result for it.

Samples

4
1 2 3 4
4
3 0
3 0 -1
0 1
2 1
1
0
0

Resources

2011寒假训练(一)(Not Original)