[BOJ 6907] Floor Plan

View as PDF

Submit solution

Points: 2
Time limit: 1.0s
Memory limit: 128M

Problem types
Allowed languages
Assembly, Awk, C, C++, Java, Pascal, Perl, Python, Sed, Text

The floor plan of a house shows rooms separated by walls. This floor plan can be transferred to a grid using the character I for walls and . for room space. Doorways are not shown. Each I or . character occupies one square metre.</p>

In this diagram, there are six rooms.

You have been given the floor plan of a house and a supply of hardwood flooring. You are to determine how many rooms will have the flooring installed if you start installing the floor in the largest room first and move to the next largest room, and so on. You may not skip over any room, and you must stop when you do not have enough wood for the next room. Output the number of rooms that can have hardwood installed, and how many square metres of flooring are left over. No room will be larger than $64$ square metres.

The first line contains the number of square metres of flooring you have. The second line contains an integer $r$ in range $1 \dots 25$ that represents the number of rows in the grid. The third line contains an integer $c$ in $1 \dots 25$ that represents the number of columns in the grid. The remaining $r$ lines contain $c$ characters of grid data.

입력 형식

출력 형식

예제 입력 1

105
14
16
IIIIIIIIIIIIIIII
I......I.......I
I......III.....I
I........I.....I
I........IIIIIII
IIIIIIIIII.....I
I.I......I.....I
III..III.I.....I
I....I.IIIII...I
I....I.....III.I
I....I.......I.I
I....I.....III.I
I....I.....I...I
IIIIIIIIIIIIIIII

예제 출력 1

4 rooms, 1 square metre(s) left over

예제 입력 2

13
2
3
.I.
.I.

예제 출력 2

2 rooms, 9 square metre(s) left over

Comments

There are no comments at the moment.