HDU 5925——Coconuts【离散化 + 求连通块】(2016 东北赛D题)

Problem Description

TanBig, a friend of Mr. Frog, likes eating very much, so he always has dreams about eating. One day, TanBig dreams of a field of coconuts, and the field looks like a large chessboard which has R rows and C columns. In every cell of the field, there is one coconut. Unfortunately, some of the coconuts have gone bad. For sake of his health, TanBig will eat the coconuts following the rule that he can only eat good coconuts and can only eat a connected component of good coconuts one time(you can consider the bad coconuts as barriers, and the good coconuts are 4-connected, which means one coconut in cell (x, y) is connected to (x - 1, y), (x + 1, y), (x, y + 1), (x, y - 1).

Now TanBig wants to know how many times he needs to eat all the good coconuts in the field, and how many coconuts he would eat each time(the area of each 4-connected component).


Input

The first line contains a positive integer T(T≤10) which denotes the test cases. T test cases begin from the second line. In every test case, the first line contains two integers R and C, 0<R,C≤109 the second line contains an integer n, the number of bad coconuts, 0≤n≤200 from the third line, there comes n lines, each line contains two integers, xi and yi, which means in cell(xi,yi), there is a bad coconut.

It is guaranteed that in the input data, the first row and the last row will not have bad coconuts at the same time, the first column and the last column will not have bad coconuts at the same time.


Output

For each test case, output “Case #x:” in the first line, where x denotes the number of test case, one integer k in the second line, denoting the number of times TanBig needs, in the third line, k integers denoting the number of coconuts he would eat each time, you should output them in increasing order.


Sample Input

2

3 3
2
1 2
2 1

3 3
1
2 2


Sample Output

Case #1:
2
1 6
Case #2:
1
8


题意

  • 题意:给你一个 R ∗ C R*C RC的矩阵和 n n n个障碍点,问你图中能分成多少个联通块?且输出每个联通块的大小。

  • 数据范围: R , C < = 1 E 9 , n < = 200 R,C<=1E9 , n<=200 R,C<=1E9n<=200


题解

  • 利用障碍点进行画线(平行x、y轴),可以发现我们能得到若干个矩形,进行离散化
  • 求出画线后的各个矩形的大小,然后dfs就可以了
  • 分割线横竖不超过200条,矩阵也最多200*200个

AC-Code

#include <iostream>
#include <algorithm>
#include <q
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值