跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2369. Cakeminator

    ID: 2375 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 1 上传者: 标签>枚举模拟算法思想编程与模拟入门难度共享题库Codeforces英文题面题目来源题面语言

Cakeminator

题目描述

A. Cakeminator
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a rectangular cake, represented as an r×c grid. Each cell either has an evil strawberry, or is empty. For example, a 3×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.

Input

The first line contains two integers r and c (2≤r,c≤10), denoting the number of rows and the number of columns of the cake. The next r lines each contains c characters − the j-th character of the i-th line denotes the content of the cell at row i and column j, 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

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

Examples
Input
3 4
S...
....
..S.
Output
8
Note

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


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1996 题。保留原作者与原赛事署名。