CF407C.Curious Array

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You've got an array consisting of nn integers: a[1],a[2],...,a[n]a[1],a[2],...,a[n] . Moreover, there are mm queries, each query can be described by three integers li,ri,kil_{i},r_{i},k_{i} . Query li,ri,kil_{i},r_{i},k_{i} means that we should add to each element a[j]a[j] , where li<=j<=ril_{i}<=j<=r_{i} .

Record means the binomial coefficient, or the number of combinations from yy elements into groups of xx elements.

You need to fulfil consecutively all queries and then print the final array.

输入格式

The first line contains integers nn , mm ( 1<=n,m<=1051<=n,m<=10^{5} ).

The second line contains nn integers a[1],a[2],...,a[n]a[1],a[2],...,a[n] ( 0<=ai<=1090<=a_{i}<=10^{9} ) — the initial array.

Next mm lines contain queries in the format li,ri,kil_{i},r_{i},k_{i} — to all elements of the segment li... ril_{i}...\ r_{i} add number ( 1<=li<=ri<=n1<=l_{i}<=r_{i}<=n ; 0<=k<=1000<=k<=100 ).

输出格式

Print nn integers: the ii -th number is the value of element a[i]a[i] after all the queries. As the values can be rather large, print them modulo 10000000071000000007 (109+7)(10^{9}+7) .

输入输出样例

  • 输入#1

    5 1
    0 0 0 0 0
    1 5 0
    

    输出#1

    1 1 1 1 1
    
  • 输入#2

    10 2
    1 2 3 4 5 0 0 0 0 0
    1 6 1
    6 10 2
    

    输出#2

    2 4 6 8 10 7 3 6 10 15
    
首页