COCI '06 Contest 2 #5 Stol

View as PDF

Submit solution


Points: 12 (partial)
Time limit: 0.6s
Memory limit: 32M

Problem types

Mirko has bought an apartment and wants to invite to dinner as many people as possible to celebrate with him. For this he needs a large rectangular wooden table for which he will sit down with his guests. The number of people a table can accommodate is equal to its perimeter (the sum of the lengths of all four sides). Mirko wants to buy a table such that it fits in his apartment and that as many people as possible can sit down with him for dinner. The table must be placed so that its edges are parallel to the edges of the apartment.

Given the layout of the apartment, find the number of people Mirko can invite to dinner.

Input Specification

The first line contains two integers R and C (1 \le R, C \le 400), the dimensions of the apartment.

Each of the following R rows contains exactly C characters (without spaces), whether a square is free (.) or blocked (X).

Mirko can put his table only in free squares.

Output Specification

Output the number of guests Mirko can invite to dinner after he buys his table on a single line.

Sample Input 1

2 2
..
..

Sample Output 1

7

Sample Input 2

4 4
X.XX
X..X
..X.
..XX

Sample Output 2

9

Sample Input 3

3 3
X.X
.X.
X.X

Sample Output 3

3

Comments


  • 1
    maxcruickshanks  commented on July 18, 2022, 5:17 a.m.

    Since the original data were weak, an additional test case was added, and all submissions were rejudged.