codeforce 6B dfs

来源:互联网 发布:php 上传文件进度 编辑:程序博客网 时间:2024/05/17 08:41

http://codeforces.com/problemset/problem/6/B

President of Berland has a very vast office-room, where, apart from him, work his subordinates. Each subordinate, as well as President himself, has his own desk of a unique colour. Each desk is rectangular, and its sides are parallel to the office walls. One day President decided to establish an assembly, of which all his deputies will be members. Unfortunately, he does not remember the exact amount of his deputies, but he remembers that the desk of each his deputy is adjacent to his own desk, that is to say, the two desks (President's and each deputy's) have a common side of a positive length.

The office-room plan can be viewed as a matrix with n rows and m columns. Each cell of this matrix is either empty, or contains a part of a desk. An uppercase Latin letter stands for each desk colour. The «period» character («.») stands for an empty cell.

Input

The first line contains two separated by a space integer numbers nm (1 ≤ n, m ≤ 100) — the length and the width of the office-room, and c character — the President's desk colour. The following n lines contain m characters each — the office-room description. It is guaranteed that the colour of each desk is unique, and each desk represents a continuous subrectangle of the given matrix. All colours are marked by uppercase Latin letters.

Output

Print the only number — the amount of President's deputies.

Sample test(s)
input
3 4 RG.B..RR.TTT.
output
2
input
3 3 Z....H...Z
output
0
简单深搜。

求与总统的办公桌挨着的办公桌的数目;

#include <stdio.h>#include <string.h>#include <iostream>using namespace std;char a[105][105];int flag[105][105];int flag1[105];int sum,n,m;char c;int dx[4]= {1,-1,0,0};int dy[4]= {0,0,-1,1};void dfs(int x,int y){    for(int i=0; i<4; i++)    {        int xx=dx[i]+x;        int yy=dy[i]+y;        if(a[xx][yy]>='A'&&a[xx][yy]<='Z'&&xx>=0&&yy>=0&&xx<n&&yy<m&&flag[xx][yy]==0)        {            //printf("&&\n");            flag[xx][yy]=1;            if(a[xx][yy]==c)                dfs(xx,yy);            else if(flag1[a[xx][yy]-'A']==0)            {                flag1[a[xx][yy]-'A']=1;                sum++;            }        }    }}int main(){    int x,y;    while(cin >> n >> m>>c)    {        for(int i=0; i<n; i++)            cin >>a[i];        for(int i=0;i<n;i++)            for(int j=0;j<m;j++)            {              if(a[i][j]==c)              {                  x=i,y=j;                  break;              }            }        sum=0;        memset(flag1,0,sizeof(flag1));        memset(flag,0,sizeof(flag));        dfs(x,y);        printf("%d\n",sum);    }    return 0;}


0 0