CF1195F.Geometers Anonymous Club

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Denis holds a Geometers Anonymous Club meeting in SIS. He has prepared nn convex polygons numbered from 11 to nn for the club. He plans to offer members of the club to calculate Minkowski sums of these polygons. More precisely, he plans to give qq tasks, the ii -th of them asks to calculate the sum of Minkowski of polygons with indices from lil_i to rir_i inclusive.

The sum of Minkowski of two sets AA and BB is the set C={a+b:aA,bB}C = \{a + b : a \in A, b \in B\} . It can be proven that if AA and BB are convex polygons then CC will also be a convex polygon.

Sum of two convex polygons To calculate the sum of Minkowski of pp polygons ( p>2p > 2 ), you need to calculate the sum of Minkowski of the first p1p - 1 polygons, and then calculate the sum of Minkowski of the resulting polygon and the pp -th polygon.

For the convenience of checking answers, Denis has decided to prepare and calculate the number of vertices in the sum of Minkowski for each task he prepared. Help him to do it.

输入格式

The first line of the input contains one integer nn — the number of convex polygons Denis prepared ( 1n1000001 \le n \le 100\,000 ).

Then nn convex polygons follow. The description of the ii -th polygon starts with one integer kik_i — the number of vertices in the ii -th polygon ( 3ki3 \le k_i ). The next kik_i lines contain two integers xijx_{ij} , yijy_{ij} each — coordinates of vertices of the ii -th polygon in counterclockwise order ( xij,yij109|x_{ij}|, |y_{ij}| \le 10 ^ 9 ).

It is guaranteed, that there are no three consecutive vertices lying on the same line. The total number of vertices over all polygons does not exceed 300000300\,000 .

The following line contains one integer qq — the number of tasks ( 1q1000001 \le q \le 100\,000 ). The next qq lines contain descriptions of tasks. Description of the ii -th task contains two integers lil_i and rir_i ( 1lirin1 \le l_i \le r_i \le n ).

输出格式

For each task print a single integer — the number of vertices in the sum of Minkowski of polygons with indices from lil_i to rir_i .

输入输出样例

  • 输入#1

    3
    3
    0 0
    1 0
    0 1
    4
    1 1
    1 2
    0 2
    0 1
    3
    2 2
    1 2
    2 1
    3
    1 2
    2 3
    1 3
    

    输出#1

    5
    5
    6
    

说明/提示

Description of the example:

First, second and third polygons from the example Minkowski sums of the first and second, the second and third and all polygons correspondingly

首页