CF369E.Valera and Queries

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

The OxOx axis of coordinates has nn segments, the ii -th segment starts in position lil_{i} and ends in position rir_{i} (we will mark it as [li,ri][l_{i},r_{i}] ). Your task is to process mm queries, each consists of number cnticnt_{i} and a set of cnticnt_{i} coordinates of points located on the OxOx 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][l,r] contains point qq , if l<=q<=rl<=q<=r .

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

输入格式

The first line contains two integers nn , mm ( 1<=n,m<=31051<=n,m<=3·10^{5} ) — the number of segments on the axis of coordinates and the number of queries.

Next nn lines contain the descriptions of the segments. The ii -th line contains two positive integers lil_{i} , rir_{i} ( 1<=li<=ri<=1061<=l_{i}<=r_{i}<=10^{6} ) — the borders of the ii -th segment.

Next mm lines contain the description of the queries, one per line. Each line starts from integer cnticnt_{i} ( 1<=cnti<=31051<=cnt_{i}<=3·10^{5} ) — the number of points in the ii -th query. Then the line contains cnticnt_{i} distinct positive integers p1,p2,...,pcntip_{1},p_{2},...,p_{cnti} ( 1<=p_{1}<p_{2}<...<p_{cnti}<=10^{6} ) — the coordinates of points in the ii -th query.

It is guaranteed that the total number of points in all queries doesn't exceed 31053·10^{5} .

输出格式

Print mm non-negative integers, where the ii -th number is the response to the ii -th query.

输入输出样例

  • 输入#1

    3 3
    1 3
    4 5
    6 7
    3 1 4 7
    2 4 5
    1 8
    

    输出#1

    3
    1
    0
    
首页