Zeus and Fibonacci

3

1 votes
Approved, Data Structures, Hard, Matrix, Segment Trees
Problem

You are given an array A consisting of N integers. You have to process two types of queries on this array.
Type 1: Change the ith element to X
Type 2: Given l and r, calculate:

Note: is the ith Fibonacci number.

Input

First line contains an integer N.
Next line contains N space separated integers denoting array A.
Next line contains the integer Q.
Next Q lines are of the following format:
: for type 1 query
: for type 2 query

Output

For each type 2 query output the answer modulo on a new line.

Constraints





Sample Input
3
1 2 3
2
2 1 2
2 1 3
Sample Output
4
19
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

Query 1:
possible subarrays : (1),(2),(1,2)
Corresponding sums : 1 ,2 ,3
Corresponding fibonacci: 1 , 1, 2
Sum of fibnoacci : 1 + 1+2=4
output : 4%(10^9+7)=4
Query 2:
possible subarrays : (1),(2),(3),(1,2),(2,3),(1,2,3)
Corresponding sums : 1,2,3,3,5,6
Corresponding fibonacci: 1,1,2,2,5,8
Sum of fibnoacci : 19
output : 19%(10^9+7)=19

Editor Image

?