3737.More Queries to Array

Time Limit: 1s Memory Limit: 256MB

You've got an array, consisting of n integers: a1,a2,...,an. Your task is to quickly run the queries of two types: Assign value x to all elements from l to r inclusive. After such query the values of the elements of array al,al+1,...,ar become equal to x. Calculate and print sum 3737_1.png, where k doesn't exceed 5. As the value of the sum can be rather large, you should print it modulo 1000000007(109+7).

Input Format(From the terminal/stdin)

Input The first line contains two integers n and m (1 \le n,m \le 105), showing, how many numbers are in the array and the number of queries, correspondingly. The second line contains n integers: a1,a2,...,an (0 \le ai \le 109) - the initial values of the array elements.Then m queries follow, one per line: The assign query has the following format: "3737_2.png", (1 \le l \le r \le n;0 \le x \le 109). The query to calculate the sum has the following format: "3737_3.png", (1 \le l \le r \le n;0 \le k \le 5). All numbers in the input are integers.

Output Format(To the terminal/stdout)

Output For each query to calculate the sum print an integer - the required sum modulo 1000000007(109+7).

Sample Input 1

Copy
4 5
5 10 2 1
? 1 2 1
= 2 2 0
? 2 4 3
= 1 4 1
? 1 4 5
 · \n
 ·  · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n
 · · · \n

Sample Output 1

Copy
25
43
1300
  \n
  \n
    \n

Sample Input 2

Copy
3 1
1000000000 1000000000 1000000000
? 1 3 0
 · \n
          ·          ·          \n
 · · · \n

Sample Output 2

Copy
999999986
         \n

Submit

请先 登录

© 2025 FAQs