시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB123594542.056%

문제

After receiving an impenetrable box, you wonder what’s inside! Write a program that finds out how many different disconnected sections the box has, and the total area of the space within the box.

입력

The first line will contain a single integer n that indicates the number of data sets that follow. Each data set will start with two integers r and c representing the number of rows and columns of the box, respectively. The next r lines will represent the box, with # representing walls and . representing spaces. The box will be surrounded entirely by walls.

출력

Output the number of discrete (disconnected) sections and the total number of spaces in the box, in the format shown in the example output.

예제 입력 1

2
4 8
########
#...#..#
#.#.#..#
########
3 3
###
#.#
###

예제 출력 1

2 sections, 9 spaces
1 section, 1 space