CF330A.Cakeminator

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a rectangular cake, represented as an r×cr×c grid. Each cell either has an evil strawberry, or is empty. For example, a 3×43×4 cake may look as follows:

The cakeminator is going to eat the cake! Each time he eats, he chooses a row or a column that does not contain any evil strawberries and contains at least one cake cell that has not been eaten before, and eats all the cake cells there. He may decide to eat any number of times.

Please output the maximum number of cake cells that the cakeminator can eat.

输入格式

The first line contains two integers rr and cc ( 2<=r,c<=102<=r,c<=10 ), denoting the number of rows and the number of columns of the cake. The next rr lines each contains cc characters — the jj -th character of the ii -th line denotes the content of the cell at row ii and column jj , and is either one of these:

  • '.' character denotes a cake cell with no evil strawberry;
  • 'S' character denotes a cake cell with an evil strawberry.

输出格式

Output the maximum number of cake cells that the cakeminator can eat.

输入输出样例

  • 输入#1

    3 4
    S...
    ....
    ..S.
    

    输出#1

    8
    

说明/提示

For the first example, one possible way to eat the maximum number of cake cells is as follows (perform 3 eats).

首页