In a stroke of luck almost beyond imagination, Farmer John was sent a ticket to the Irish Sweepstakes (really a lottery) for his birthday. This ticket turned out to have only the winning number for the lottery! Farmer John won a fabulous castle in the Irish countryside.
Bragging rights being what they are in Wisconsin, Farmer John wished to tell his cows all about the castle. He wanted to know how many rooms it has and how big the largest room was. In fact, he wants to take out a single wall to make an even bigger room.
Your task is to help Farmer John know the exact room count and sizes.
The castle floorplan is divided into M (wide) by N (1 <=M,N<=50) square modules. Each such module can have between zero and four walls. Castles always have walls on their "outer edges" to keep out the wind and rain.
Consider this annotated floorplan of a castle:
1 2 3 4 5 6 7 ############################# 1 # | # | # | | # #####---#####---#---#####---# 2 # # | # # # # # #---#####---#####---#####---# 3 # | | # # # # # #---#########---#####---#---# 4 # -># | | | | # # ############################# # = Wall -,| = No wall -> = Points to the wall to remove to make the largest possible new room
By way of example, this castle sits on a 7 x 4 base. A "room" includes any set of connected "squares" in the floor plan. This floorplan contains five rooms (whose sizes are 9, 7, 3, 1, and 8 in no particular order).
Removing the wall marked by the arrow merges a pair of rooms to make the largest possible room that can be made by removing a single wall.
The castle always has at least two rooms and always has a wall that can be removed.
The map is stored in the form of numbers, one number for each module ("room"), M numbers on each of N lines to describe the floorplan. The input order corresponds to the numbering in the example diagram above.
Each module descriptive-number tells which of the four walls exist and is the sum of up to four integers:
Inner walls are defined twice; a wall to the south in module 1,1 is also indicated as a wall to the north in module 2,1.
Line 1: | Two space-separated integers: M and N |
Line 2..: | M x N integers, several per line. |
7 4 11 6 11 6 3 10 6 7 9 6 13 5 15 5 1 10 12 7 13 7 5 13 11 10 8 10 12 13
The output contains several lines:
Line 1: | The number of rooms the castle has. |
Line 2: | The size of the largest room |
Line 3: | The size of the largest room creatable by removing one wall |
Line 4: | The single wall to remove to make the largest room possible |
Choose the optimal wall to remove from the set of optimal walls by choosing the module farthest to the west (and then, if still tied, farthest to the south). If still tied, choose 'N' before 'E'. Name that wall by naming the module that borders it on either the west or south, along with a direction of N or E giving the location of the wall with respect to the module.
5 9 16 4 1 E
First, the map is partitioned like below. Note that walls not on the outside borders are doubled:
1 2 3 4 5 6 7 ####|####|####|####|####|####|##### 1 # | #|# | #|# | | # ####| #|####| #|# |####| # -----|----|----|----|----|----|----- ####|# |####|# #|# #|####|# # 2 # #|# | #|# #|# #|# #|# # # #|####| #|####|# #|####|# # -----|----|----|----|----|----|----- # |####| #|####|# #|####|# # 3 # | | #|# #|# #|# #|# # # |####|####|# #|####|# #|# # -----|----|----|----|----|----|----- # #|####|####| |####| #|# # 4 # #|# | | | | #|# # ####|####|####|####|####|####|#####
Let's talk about the squares with a (row, column) notation such that the lower right corner is denoted (4, 7).
The input will have four lines, each with 7 numbers. Each number describes one 'room'. >Walls further toward the top are 'north', towards the bottom are 'south', towards the left are 'west', and towards the right are 'east'.
Consider square (1,1) which has three walls: north, south, and west. To encode those three walls, we consult the chart:
and sum the numbers for north (2), south (8), and west (1). 2 + 8 + 1 = 11, so this room is encoded as 11.
The next room to the right (1,2) has walls on the north (2) and east (4) and thus is encoded as 2 +4 = 6.
The next room to the right (1,3) is the same as (1,1) and thus encodes as 11.
Room (1,4) is the same as (1,2) and thus encodes as 6.
Room (1,5) has rooms on the west (1) and north (2) and thus encodes as 1 + 2 = 3.
Room (1,6) has rooms on the north (2) and south (8) and thus encodes as 2 + 8 = 10.
Room (1,7) is the same as room (1,2) and thus encodes as 6.
This same method continues for rooms (2,1) through (4,7).
/*
ID :choiyin1
LANG: C++11
TASK: castle
*/
#include <iostream>
#include <algorithm>
#include <cmath>
#include <queue>
using namespace std;
int N, M;
int size[2600] = {};
int color = 0;
int map[55][55] = {};
int wall[55][55];
queue<pair<int, int>> flood;
int direction[4][2] = {0, -1, -1, 0, 0, 1, 1, 0};
int maxRoomSize = 0;
int maxRoomSizeRemove = 0;
pair<pair<int, int>, char> wallRemoved;
int main()
{
freopen("castle.in", "r", stdin);
freopen("castle.out", "w", stdout);
cin >> M >> N;
for (int i = 0; i < N; i ++){
for (int j = 0; j < M; j ++){
cin >> wall[i][j];
}
}
typedef pair<int, int> cord;
//color the map, one room, one color
//calculate the maxRoomSize and how many rooms are here in the house
for (int i = 0; i < N; i ++){
for (int j = 0; j < M; j ++){
if (map[i][j] == 0){
flood.push(cord(i, j));
color ++;
map[i][j] = color;
while (!flood.empty()){
cord room = flood.front();
flood.pop();
size[color] ++;
for (int k = 0; k < 4; k ++){
if (!((wall[room.first][room.second] >> k) & 1) && map[room.first + direction[k][0]][room.second + direction[k][1]] == 0){
map[room.first + direction[k][0]][room.second + direction[k][1]] = color;
flood.push(cord(room.first + direction[k][0], room.second + direction[k][1]));
}
}
}
if (size[color] > maxRoomSize) {
maxRoomSize = size[color];
}
}
}
}
//enumerate the walls and calculate the biggest room after remove the wall.
for (int j = 0; j < M; j ++){
for (int i = N - 1; i >= 0; i --){
for (int k = 1; k <= 2; k ++){
if (((wall[i][j] >> k) & 1) && (i + direction[k][0] >= 0) && (j + direction[k][1] < M)){
if (map[i][j] != map[i + direction[k][0]][j + direction[k][1]]){
int tSize = size[map[i][j]] + size[map[i + direction[k][0]][j + direction[k][1]]];
if (tSize > maxRoomSizeRemove){
maxRoomSizeRemove = tSize;
wallRemoved.first.first = i;
wallRemoved.first.second = j;
wallRemoved.second = k == 1 ? 'N' : 'E';
}
}
}
}
}
}
cout << color << endl << maxRoomSize << endl;
cout << maxRoomSizeRemove << endl;
cout << wallRemoved.first.first + 1 << ' ' << wallRemoved.first.second + 1 << ' ' << wallRemoved.second << endl;
}