3634.Greg and Array

Time Limit: 1s Memory Limit: 256MB

Greg has an array a=a1,a2,...,an and m operations. Each operation looks as: li, ri, di, (1 \le li \le ri \le n). To apply operation i to the array means to increase all array elements with numbers li,li+1,...,ri by value di.

Greg wrote down k queries on a piece of paper. Each query has the following form: xi, yi, (1 \le xi \le yi \le m). That means that one should apply operations with numbers xi,xi+1,...,yi to the array.

Now Greg is wondering, what the array a will be after all the queries are executed. Help Greg.

Input Format(From the terminal/stdin)

The first line contains integers n, m, k (1 \le n,m,k \le 105). The second line contains n integers: a1,a2,...,an (0 \le ai \le 105) - the initial array.

Next m lines contain operations, the operation number i is written as three integers: li, ri, di, (1 \le li \le ri \le n), (0 \le di \le 105).

Next k lines contain the queries, the query number i is written as two integers: xi, yi, (1 \le xi \le yi \le m).

The numbers in the lines are separated by single spaces.

Output Format(To the terminal/stdout)

On a single line print n integers a1,a2,...,an - the array after executing all the queries. Separate the printed numbers by spaces.

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams of the %I64d specifier.

Sample Input 1

Copy
3 3 3
1 2 3
1 2 1
1 3 2
2 3 4
1 2
1 3
2 3
 · · \n
 · · \n
 · · \n
 · · \n
 · · \n
 · \n
 · \n
 · \n

Sample Output 1

Copy
9 18 17
 ·  ·  \n

Sample Input 2

Copy
1 1 1
1
1 1 1
1 1
 · · \n
 \n
 · · \n
 · \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
4 3 6
1 2 3 4
1 2 1
2 3 2
3 4 4
1 2
1 3
2 3
1 2
1 3
2 3
 · · \n
 · · · \n
 · · \n
 · · \n
 · · \n
 · \n
 · \n
 · \n
 · \n
 · \n
 · \n

Sample Output 3

Copy
5 18 31 20
 ·  ·  ·  \n

Submit

请先 登录

© 2025 FAQs