CodeFocrces 369E. Valera and Queries

来源:互联网 发布:linux trash是什么意思 编辑:程序博客网 时间:2024/05/21 05:37


E. Valera and Queries
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

Valera loves segments. He has recently come up with one interesting problem.

The Ox axis of coordinates has n segments, the i-th segment starts in position li and ends in position ri (we will mark it as [li, ri]). Your task is to process m queries, each consists of number cnti and a set of cnti coordinates of points located on the Ox axis. The answer to the query is the number of segments, such that each of them contains at least one point from the query. Segment [l, r] contains point q, if l ≤ q ≤ r.

Valera found the solution of this problem too difficult. So he asked you to help him. Help Valera.

Input

The first line contains two integers nm (1 ≤ n, m ≤ 3·105) — the number of segments on the axis of coordinates and the number of queries.

Next n lines contain the descriptions of the segments. The i-th line contains two positive integers liri (1 ≤ li ≤ ri ≤ 106) — the borders of the i-th segment.

Next m lines contain the description of the queries, one per line. Each line starts from integer cnti (1 ≤ cnti ≤ 3·105) — the number of points in the i-th query. Then the line contains cnti distinct positive integers p1, p2, ..., pcnti (1 ≤ p1 < p2 < ... < pcnti ≤ 106) — the coordinates of points in the i-th query.

It is guaranteed that the total number of points in all queries doesn't exceed 3·105.

Output

Print m non-negative integers, where the i-th number is the response to the i-th query.

Sample test(s)
input
3 31 34 56 73 1 4 72 4 51 8
output
310

反过来求在两个点之间的线段的个数。。。。很好的数状数组题目。。。。。


#include <iostream>#include <cstdio>#include <cstring>#include <algorithm>using namespace std;const int maxn=3000010;int ans[maxn];struct Interval{    int l,r,id;}I[maxn],q[maxn];bool cmp(Interval a,Interval b){    return a.r<b.r;}int tree[maxn];int lowbit(int x) {return x&-x; }void Add(int x){    while(x<1000010)    {        tree[x]+=1;        x+=lowbit(x);    }}int getSum(int x){    int sum=0;    while(x>0)    {        sum+=tree[x];        x-=lowbit(x);    }    return sum;}int main(){    int n,m;    scanf("%d%d",&n,&m);    for(int i=0;i<n;i++)    {        scanf("%d%d",&I[i].l,&I[i].r);        I[i].id=i;    }    int e=0;    for(int i=0;i<m;i++)    {        int t;        scanf("%d",&t);        for(int j=0;j<t;j++)        {             scanf("%d",&q[e].r);             q[e].id=i;             if(j==0) q[e].l=0;             else q[e].l=q[e-1].r;             e++;        }        q[e].id=i;        q[e].l=q[e-1].r;        q[e++].r=1000010;    }    sort(I,I+n,cmp);    sort(q,q+e,cmp);    for(int i=0;i<m;i++) ans[i]=n;    memset(tree,0,sizeof(tree));    int j=0;    for(int i=0;i<e;i++)    {        while(j<n&&I[j].r<q[i].r)        {            Add(I[j].l);j++;        }        ans[q[i].id]-=getSum(q[i].r-1)-getSum(q[i].l);    }    for(int i=0;i<m;i++)        printf("%d\n",ans[i]);    return 0;}




原创粉丝点击