CF223E.Planar Graph

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A graph is called planar, if it can be drawn in such a way that its edges intersect only at their vertexes.

An articulation point is such a vertex of an undirected graph, that when removed increases the number of connected components of the graph.

A bridge is such an edge of an undirected graph, that when removed increases the number of connected components of the graph.

You've got a connected undirected planar graph consisting of nn vertexes, numbered from 11 to nn , drawn on the plane. The graph has no bridges, articulation points, loops and multiple edges. You are also given qq queries. Each query is a cycle in the graph. The query response is the number of graph vertexes, which (if you draw a graph and the cycle on the plane) are located either inside the cycle, or on it. Write a program that, given the graph and the queries, will answer each query.

输入格式

The first line contains two space-separated integers nn and mm ( 3<=n,m<=1053<=n,m<=10^{5} ) — the number of vertexes and edges of the graph. Next mm lines contain the edges of the graph: the ii -th line contains two space-separated integers uiu_{i} and viv_{i} ( 1<=ui,vi<=n1<=u_{i},v_{i}<=n ) — the numbers of vertexes, connecting the ii -th edge. The next nn lines contain the positions of the planar graph vertexes on the plane: the ii -th line contains a pair of space-separated integers xix_{i} and yiy_{i} ( xi,yi<=109)|x_{i}|,|y_{i}|<=10^{9}) — the coordinates of the ii -th vertex of the graph on the plane.

The next line contains integer qq ( 1<=q<=1051<=q<=10^{5} ) — the number of queries. Then follow qq lines that describe the queries: the ii -th line contains the sequence of space-separated integers kik_{i} , a1a_{1} , a2a_{2} , ..., akia_{ki} ( 1<=a_{j}<=n; k_{i}>2 ), where kik_{i} is the cycle length in the ii -th query, aja_{j} are numbers of the vertexes that form a cycle. The numbers of vertexes in the cycle are given in the clockwise or counterclockwise order. The given cycles are simple, that is they cannot go through a graph vertex more than once. The total length of all cycles in all queries does not exceed 10510^{5} .

It is guaranteed that the given graph contains no bridges, articulation points, loops and multiple edges. It is guaranteed that the edge segments can have common points only at the graph's vertexes.

输出格式

For each query print a single integer — the number of vertexes inside the cycle or on it. Print the answers in the order, in which the queries follow in the input. Separate the numbers by spaces.

输入输出样例

  • 输入#1

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

    输出#1

    3
    
  • 输入#2

    5 8
    1 2
    2 3
    3 4
    4 1
    1 5
    2 5
    3 5
    4 5
    0 0
    2 0
    2 2
    0 2
    1 1
    1
    4 1 2 3 4
    

    输出#2

    5
    
  • 输入#3

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

    输出#3

    3
    3
    4
    
首页