zoukankan      html  css  js  c++  java
  • CF w4d2 A. Cakeminator

    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).

    #include<bits/stdc++.h>
    using namespace std;
    char f[12][12];
    int n,m,ans;
    int row[12],col[12];
    
    void eat(int x,int y)
    {
    	if(f[x][y]=='.'){
    		f[x][y]=0;
    		ans++;
    	}
    }
    
    int main()
    {
    	cin>>n>>m;
    	for(int i=0;i<n;i++){
    		for(int j=0;j<m;j++){
    			cin>>f[i][j];
    			if(f[i][j]=='S'){
    				row[i]++;
    				col[j]++;
    			}
    		}
    	}
    	for(int i=0;i<n;i++)if(row[i]==0){
    		for(int j=0;j<m;j++){
    			eat(i,j);
    		}
    	}
    	for(int j=0;j<m;j++)if(col[j]==0){
    		for(int i=0;i<n;i++){
    			eat(i,j);
    		}
    	}
    	//cout<<col[2]<<endl;
    	cout<<ans<<endl;
    	return 0;
    }
    
  • 相关阅读:
    【URL重写】IIS7配置URL重写
    【IIS7.5】Asp文件上传限制,加载页面大小限制
    msxml3.dll 错误 '800c0005' 系统错误: -2146697211。
    【转】修改3389远程端口的批处理文件.bat
    第一篇:无角牛MVC通用后台数据库设计
    无角牛MVC通用后台
    个人收集资料整理-WebForm
    个人收集资料整理-WinForm
    win7系统中桌面图标显示不正常问题
    ASP.NET MVC 第六回 过滤器Filter
  • 原文地址:https://www.cnblogs.com/LiangYC1021/p/12977196.html
Copyright © 2011-2022 走看看