A1512.[COCI-2013_2014-contest2]#2 MISA
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
A nice part of the Roman Catholic Mass is the rite of peace when people shake hands with their neighbours and say "peace be with you". Mirko has found a way to turn this ritual into his own favor.
Inside the church, there are R rows of benches where each row can hold a capacity of S people. We can imagine the seating order as a matrix sized R x S where each element represents either a person or an empty seating space. Let us assume that each person shakes hands with their neighbours. That means that the neighbours are located in one of the eight neighbouring elements (if such element exists):
A seating order of the people inside the church has been given before Mirko enters. Mirko is, of course, late for the morning Mass and will sit in an empty space so that he shakes hands with as many people as he can. If there are no empty seats left, Mirko will simply give up on the idea and go to the evening Mass instead. We can assume that nobody enters the church after Mirko.
Calculate the total number of handshakes given during the morning Mass.
输入格式
The first line of input contains positive integers R and S (1 ≤ R, S ≤ 50) as stated in the text.
Each of the following R lines contains S characters. These R x S characters represent the seating order.
The character '.' (dot) represents an empty place and the character 'o' (lowercase letter o) represents a person.
输出格式
The first and only line of output should contain the required number of handshakes.
输入输出样例
输入#1
2 3 ..o o..
输出#1
2
输入#2
2 2 oo oo
输出#2
6
说明/提示
In test data worth 20% of total points, R will be 1.
In test data worth 20% of total points, R will be 2.
In test data worth 20% of total points, the church will be full, meaning all seats will be taken.
Clarification of the first example: Mirko will sit in a way that he can shake hands with both persons,
which gives us two possibilities:
.oo ..o
o.. oo