CodeForces - 369E Valera and Queries 离线+树状数组

 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 3
1 3
4 5
6 7
3 1 4 7
2 4 5
1 8
output
3
1
0
 
        
思路:先求没被点覆盖的线段数x,然后n-x即为所求,这就是求相邻点所成区间内有多少线段数
 
        
#include <cstdlib>
#include <cctype>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <vector>
#include <string>
#include <iostream>
#include <sstream>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <fstream>
#include <numeric>
#include <iomanip>
#include <bitset>
#include <list>
#include <stdexcept>
#include <functional>
#include <utility>
#include <ctime>

using namespace std;

#define PB push_back
#define MP make_pair
#define REP(i,n) for(int i=0;i<(n);++i)
#define FOR(i,l,h) for(int i=(l);i<=(h);++i)
#define DWN(i,h,l) for(int i=(h);i>=(l);--i)
#define CLR(vis) memset(vis,0,sizeof(vis))
#define MST(vis,pos) memset(vis,pos,sizeof(vis))
#define MAX3(a,b,c) max(a,max(b,c))
#define MAX4(a,b,c,d) max(max(a,b),max(c,d))
#define MIN3(a,b,c) min(a,min(b,c))
#define MIN4(a,b,c,d) min(min(a,b),min(c,d))
#define PI acos(-1.0)
#define INF 0x7FFFFFFF
#define LINF 1000000000000000000LL
#define eps 1e-8

typedef long long ll;

const int maxn=1e6+10;

struct node{
    int l,r;
    int id;
    bool operator < (const node & a) const
    {
        if(l!=a.l) return l>a.l;
        if(r!=a.r) return r<a.r;
        return id<a.id;
    }
}a[maxn];

int res[maxn];
int c[maxn];

inline int lowbit(int i)
{
    return i&(-i);
}

void add(int i)
{
    while(i<=maxn)
    {
        c[i]++;
        i+=lowbit(i);
    }
}

int query(int i)
{
    int ret=0;
    while(i>0)
    {
        ret+=c[i];
        i-=lowbit(i);
    }
    return ret;
}

int main()
{
    int n,m;
    cin>>n>>m;
    int tot=0;
    REP(i,n)
    {
        scanf("%d%d",&a[tot].l,&a[tot].r);
        a[tot++].id=0;
    }
    int cnt,now,pre;
    FOR(i,1,m)
    {
        scanf("%d",&cnt);
        pre=0;
        res[i]=n;
        REP(j,cnt)
        {
            scanf("%d",&now);
            a[tot].l=pre+1;
            a[tot].r=now-1;
            if(a[tot].l<=a[tot].r)
                a[tot++].id=i;
            pre=now;
        }
        a[tot].l=pre+1;
        a[tot].r=maxn;
        a[tot++].id=i;
    }
    sort(a,a+tot);
    CLR(c);
    REP(i,tot)
    {
        if(a[i].id)
            res[a[i].id]-=query(a[i].r);
        else
            add(a[i].r);
    }
    FOR(i,1,m)
      printf("%d\n",res[i]);
    return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值