Naruto - The New Hokage

4.5

6 votes
Problem

Naruto was declared as the 7th Hokage because of his great contribution in the 4th Shinobi World War. As soon as he aquires office, he changes the process of ranking of Shinobis. Instead of the Genin (Beginner), Chuunin (Intermediate) and Jounin (Expert), the new ranks are numbers ranging from 1 (lowest) to 10 (highest).
There are a total of N ninjas in the Leaf Village, ith of which has Ai amount of chakra (energy). A ninja with rank P would have a strength of AiP.
Naruto has Q pending tasks to perform which can be of one of the following types:-

  • 1iK : Update the result of training of the ith ninja i.e. increase the amount of chakra of the ith ninja by K.
  • 2LRK : Update the result of training of the ninjas ranging from L to R i.e. increase the amount of chakra of the ninjas ranging from L to R by K.
  • 3LRP : Calculate the total strength of the ninjas ranging from L to R provided that each of these ninjas have rank P for sending them to a mission assigned to the Leaf Village. As the value can be very large, calculate it modulo 109+7.

Naruto asked you to take care of these tasks.

INPUT FORMAT
The first line of input contains a single integer T denoting the number of test cases.
The first line of each test case contains a single integer N denoting the number of ninjas in the Leaf Village.
The next line contains N space separated integers. ith integer denotes the amount of chakra Ai in the ith ninja.
The third line contains a single integer Q denoting the number of pending tasks that Naruto has.
This is followed by Q lines each containing the description of a task that Naruto has to perform.

OUTPUT FORMAT
The output should consist of the answer of all the queries of the 3rd type printed on a new line.

CONSTRAINTS

  • 1T3
  • 1N105
  • 1Ai,K106
  • 1Q2×104
  • 1LRN
  • 1P10
Time Limit: 2
Memory Limit: 256
Source Limit:
Explanation

The 1st task is query - 13+53+93=855.
The 2nd task is update after which the array becomes 181253.
The 3rd task is query - 13+83+123=2241.
The 4th task is update after which the array changes to 1121253.
The 5th task is query - 13+123+123=3457.

Editor Image

?