cf192 div2 A. Cakeminator

來源:互聯網
上載者:User
A. Cakeminatortime 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.

Sample test(s)input
3 4S.........S.
output
8
表示比賽的時候再次腦殘,寫不出來,今天觀摩了b哥的代碼,自己琢磨了會兒才寫出來,哎,弱爆了。
下面是代碼:

#include <cstdio>#include <cstring>#include <iostream>#include <algorithm>using namespace std;char cmd;int line[20];int col[20];int main(){    int n,m;    cin>>n>>m;    for(int i=0;i<20;i++){         line[i]=0;         col[i]=0;    }    int a=0,b=0;    for(int i=0;i<n;++i)       for(int j=0;j<m;++j){             cin>>cmd;             if(cmd=='S'){                 if(line[i]==0) ++a;                  line[i]++;                 if(col[j]==0)  ++b;                  col[j]++;             }       }       cout<<n*m-a*b<<endl;       return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.