zoukankan      html  css  js  c++  java
  • Looksery Cup 2015——AFace Detection

    The developers of Looksery have to write an efficient algorithm that detects faces on a picture. Unfortunately, they are currently busy preparing a contest for you, so you will have to do it for them.

    In this problem an image is a rectangular table that consists of lowercase Latin letters. A face on the image is a 2 × 2 square, such that from the four letters of this square you can make word "face".

    You need to write a program that determines the number of faces on the image. The squares that correspond to the faces can overlap.

    Input

    The first line contains two space-separated integers, n and m (1 ≤ n, m ≤ 50) — the height and the width of the image, respectively.

    Next n lines define the image. Each line contains m lowercase Latin letters.

    Output

    In the single line print the number of faces on the image.

    Sample test(s)
    input
    4 4
    xxxx
    xfax
    xcex
    xxxx
    output
    1
    input
    4 2
    xx
    cf
    ae
    xx
    output
    1
    input
    2 3
    fac
    cef
    output
    2
    input
    1 4
    face
    output
    0
    Note

    In the first sample the image contains a single face, located in a square with the upper left corner at the second line and the second column:

    In the second sample the image also contains exactly one face, its upper left corner is at the second row and the first column.

    In the third sample two faces are shown:

    In the fourth sample the image has no faces on it.

    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    int main()
    {
    	int n,m;
    	int c[55][55];
    	char  a[55][55];
    	while(~scanf("%d%d",&n,&m)){
    		int count = 0;
    		memset(c,0,sizeof(c));
    		getchar();
    		for(int i = 1; i <= n ; i++){
    			for(int j = 1; j <= m ; j++)
    				scanf("%c",&a[i][j]);
    			getchar();
    		}
    	    for(int i = 1; i <= n ; i++){
    			for(int j = 1; j <= m ; j++){
    				if(a[i][j] == 'f')
    					c[i][j] = 1;
    				if(a[i][j] == 'a')
    					c[i][j] = 10;
    				if(a[i][j] == 'c')
    					c[i][j] = 100;
    				if(a[i][j] == 'e')
    					c[i][j] = 1000;
    			}
    		}
    //		for(int i = 1; i <= n ; i++){
    //			for(int j = 1; j <= m ; j++){
    //				printf("%c",a[i][j]);
    //			}
    //			puts("");
    //		}
    //		for(int i = 1; i <= n; i++){
    //			for(int j = 1; j <= m ;j++)
    //				printf("%d",c[i][j]);
    //		puts("");
    //	}
    		for(int i = 1; i < n ; i++){
    			for(int j = 1; j < m ;j++){
    				if(c[i][j] + c[i+1][j+1] + c[i+1][j] + c[i][j+1] == 1111)
    					count++;
    					}
    		}
    		printf("%d
    ",count);
    	}
    	return 0;
    }
    

      

  • 相关阅读:
    RDD容错处理方式和传统容错处理方式的比较(视频笔记)
    安装spark笔记
    动手实战创建RDD的三种方式(视频笔记)
    spark实时运算
    spark RDD 中Action的count、top、reduce、fold、aggregate (视频笔记)
    RDD中transformation的combineByKey、reduceByKey详解(视频笔记)
    spark RDD 中 transformation的map、flatMap、mapPartitions、glom详解(视频笔记)
    spark RDD中transformation的lazy特性深度解析和手动证明(视频笔记)
    SQL模糊查询语句拼接时单引号'问题
    我の第一篇博客
  • 原文地址:https://www.cnblogs.com/zero-begin/p/4569652.html
Copyright © 2011-2022 走看看