CF 179(div2) C(线段树 || 扫描法 )

来源:互联网 发布:历史非农数据 编辑:程序博客网 时间:2024/05/18 08:01
C. Greg and Array
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Greg has an array a = a1, a2, ..., an andm operations. Each operation looks as: li, ri, di, (1 ≤ li ≤ ri ≤ n). To apply operationi to the array means to increase all array elements with numbersli, li + 1, ..., ri by valuedi.

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 numbersxi, 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 containsn integers: a1, a2, ..., an(0 ≤ ai ≤ 105) — the initial array.

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

Next k lines contain the queries, the query numberi 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 inC++. It is preferred to use the cin, cout streams of the %I64d specifier.

Sample test(s)
Input
3 3 31 2 31 2 11 3 22 3 41 21 32 3
Output
9 18 17
Input
1 1 111 1 11 1
Output
2
Input
4 3 61 2 3 41 2 12 3 23 4 41 21 32 31 21 32 3
Output
 
这道题有两种做法,第一种也是最常想到的维护两颗线段树。其实这道题有另一种O(n)的算法,因为我们最后只查询一次,所以是不需要线段树的。关键是找到类似线段树lazy的另一种数据结构。用一个count数组记录,a是累加后的结果,关键代码就是这句了
for(int i = 1;i <= m;i++){    countn[l[i]-1] += d[i];countn[r[i]] -= d[i];}sum = 0;for(int i = 0;i <= n;i++){     a[i] += sum;sum += countn[i];}
读者自己动手模拟一遍就能看出里面的思路了

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>#define LL long longusing namespace std;const int maxn = 100100;LL a[maxn],l[maxn],r[maxn],d[maxn];LL countn[maxn],ll[maxn],rr[maxn];int main(){    int n,m,k;    while(scanf("%d%d%d",&n,&m,&k) != EOF){        for(int i = 1;i <= n;i++)            cin >> a[i];        for(int i = 1;i <= m;i++)            cin >> l[i] >> r[i] >> d[i];        memset(countn,0,sizeof(countn));        for(int i = 0;i < k;i++){            int teml,temr;            cin >> teml >> temr;            countn[teml-1] += 1;countn[temr] -= 1;        }        LL sum = 0;        for(int i = 0;i <= m;i++){            d[i] *= sum;            sum += countn[i];        }        memset(countn,0,sizeof(countn));        for(int i = 1;i <= m;i++){            countn[l[i]-1] += d[i];countn[r[i]] -= d[i];        }        sum = 0;        for(int i = 0;i <= n;i++){            a[i] += sum;sum += countn[i];        }        for(int i = 1;i < n;i++) cout << a[i] << ' ';        cout << a[n] << endl;    }    return 0;}

原创粉丝点击