#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 . There are two types of operations with it:
inc(lf, rg, v)
— this operation increases each element on the segment (inclusively) by ;rmq(lf, rg)
— this operation returns minimal value on the segment (inclusively).
Assume segments to be circular, so if and , it means the index sequence: 3, 4, 0, 1
.
Write program to process given sequence of operations.
Input
The first line contains integer (). The next line contains initial state of the array: ( ), are integer. The third line contains integer (), — the number of operartons. Next lines contain one operation each. If line contains two integer () it means rmq
operation, it contains three integers (, ) — 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)