编程介的小学生 2017-08-01 11:44 采纳率: 0.2%
浏览 689
已采纳

Farmland

We have a map for farming land in a country. The whole farming land of the country is divided into a set of disjoint farming regions. Each farmer owns only one farming region in this country. There is a boundary fence between two neighboring farming regions. The farmland map for this country can be represented in a plane graph. The following Figure-1 shows one example.

Figure-1: Farmland graph G(V,E)

There are two types of edges, boundary edge and non-boundary edge. All edges of G(V,E) except (v8, v6) and (v11, v10) are boundary edges which are between two neighboring farming regions. The "proper farming region" in a Farmland graph is a closed region bounded by a simple cycle and it should not contain any vertices or edges inside. In this figure, the polygon is a proper farming region, and the region < v2, v1, v7, v8 , v2, v5, v4, v3 > is not a proper farming region since its boundary cycle is not simple.

We assume that the farmland graph G(V,E) is a simple connected graph, which does not allow self-loops (Figure-2 (a)) and parallel edges (Figure-2 (b)). Also in Farmland graph G(V,E), we do not consider the outer face of G(V,E). You can see that there are 2 proper farming regions in G(V,E) shown in Figure-1, namely and , since there are no vertices or edges inside. But the polygon is not a proper farming region since vertex v3, v4, and v5 are located in that region. Similarly, the region is not a proper region because a vertex v10 is inside the region. A degenerate polygon is not a proper region because it has no valid area inside.

Figure-2: (a) self-loop , and (b) 3 parallel edges { , , }

There are other assumptions for input farmland graph data.

  1. There is at least one proper farming region.
  2. The position of each vertex in Farmland graph is distinct.
  3. There is no edge crossing, which means the graph G(V,E) is a plane graph.
  4. Farmland graph G(V,E) is simple and connected.

Let us define the "size" of proper farming region. The size of proper farming region is the number of boundary edges of that region. For example, the size of the proper farming region is 4.

The problem is to find the number of proper regions that have a specified size. If you are requested to find the number of proper regions with size of 4 in the graph given in Figure-1, you must answer that there are 2 proper regions whose sizes are 4 because farming regions < v1,v9,v8,v7 > and are proper regions and their sizes are 4. If there are no such regions, then you have to print 0.

Input

The input consists of M test cases. The first line of the input contains a positive integer M, the number of test cases you are to solve. After the first line, input data for M cases follow. The first line of each test case contains a positive integer N (>=3), the number of vertices. Each of the following N lines is of the form:
i xi yi di a1 a2 a3 ..... adi

"i" is the vertex number, xi and yi are the coordinate (xi, yi) of the vertex i, and di is the degree of the vertex i. The following { ai } are the adjacent vertices of the vertex i. The last line gives k, the size of proper regions that you have to count.

Note that M, the number of cases in input is less than 10. N, the number of vertices of a given farmland graph is less than 200. All vertices are located on grid points of the 1000 x 1000 lattice grid.

Output

The output must contain M non-negative integers. Each line contains the answer n to the corresponding case of the input.

Sample Input

2
12
1 2 6 3 9 7 2
2 5 6 4 5 3 1 8
3 3 5 2 4 2
4 3 4 2 3 5
5 4 4 2 4 2
6 7 4 1 8
7 2 3 2 8 1
8 5 3 5 7 2 9 12 6
9 1 2 3 11 8 1
10 3 2 1 11
11 2 1 3 10 9 12
12 6 1 2 8 11
4
3
1 2 2 2 2 3
2 1 1 2 1 3
3 4 1 2 1 2
4

Output for the Sample Input

2
0

  • 写回答

2条回答 默认 最新

  • threenewbee 2017-08-02 16:39
    关注
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。