Greg and Array CodeForces - 296C(差分数组+线段树)
Greg has an array a?=?a1,?a2,?…,?an and m operations. Each operation looks as: li, ri, di, (1?≤?li?≤?ri?≤?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?≤?xi?≤?yi?≤?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
The first line contains integers n, m, k (1?≤?n,?m,?k?≤?105). The second line contains n integers: a1,?a2,?…,?an (0?≤?ai?≤?105) — the initial array.
Next m lines contain operations, the operation number i is written as three integers: li, ri, di, (1?≤?li?≤?ri?≤?n), (0?≤?di?≤?105).
Next k lines contain the queries, the query number i is written as two integers: xi, yi, (1?≤?xi?≤?yi?≤?m).
The numbers in the lines are separated by single spaces.
Output
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.
Examples
Input
3 3 3
1 2 3
1 2 1
1 3 2
2 3 4
1 2
1 3
2 3
Output
9 18 17
Input
1 1 1
1
1 1 1
1 1
Output
2
Input
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
Output
5 18 31 20
題意:給定一組序列??偣灿衜個(gè)操作,每個(gè)操作就是一次區(qū)間更新。后面有k次讀入,每次讀入l~r,代表著l ~r中的操作都執(zhí)行一次,輸出最后的序列是什么。
肯定不能直接暴力,每次都更新。我們可以離線一下,把所有操作會(huì)執(zhí)行幾次給計(jì)算出來(利用差分?jǐn)?shù)組),然后再更新的時(shí)候就直接把最后一次的給求出來,這樣就省時(shí)間了。
代碼如下:
努力加油a啊,(o)/~
總結(jié)
以上是生活随笔為你收集整理的Greg and Array CodeForces - 296C(差分数组+线段树)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Lost Cows POJ - 2182
- 下一篇: 233 Matrix HDU - 501