3407.Valera and Queries

Time Limit: 1s Memory Limit: 256MB

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 \le q \le r.

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

Input Format(From the terminal/stdin)

The first line contains two integers n, m (1 \le n,m \le 3 \cdot 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 li, ri (1 \le li \le ri \le 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 \le cnti \le 3 \cdot 105) - the number of points in the i-th query. Then the line contains cnti distinct positive integers p1,p2,...,pcnti (1 \le p1 \lt p2 \lt ... \lt pcnti \le 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 \cdot 105.

Output Format(To the terminal/stdout)

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

Sample Input

Copy
3 3
1 3
4 5
6 7
3 1 4 7
2 4 5
1 8
 · \n
 · \n
 · \n
 · \n
 · · · \n
 · · \n
 · \n

Sample Output

Copy
3
1
0
 \n
 \n
 \n

Submit

请先 登录

© 2025 FAQs