记录编号 44141 评测结果 AAAAAAAAAA
题目名称 家族 最终得分 100
用户昵称 Gravatar王者自由 是否通过 通过
代码语言 C++ 运行时间 0.024 s
提交时间 2012-10-16 22:16:12 内存使用 0.30 MiB
显示代码纯文本
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int N = 200 + 10;
const int X[] = {0, 0, -1, 1};
const int Y[] = {-1, 1, 0, 0};
int n, m, s;
char c[N][N];
bool v[N][N];
void DFS(int x, int y) {
    if(x < 0 || y < 0 || x >= n || y >= m) return;
    if(v[x][y] || !('a' <= c[x][y] && c[x][y] <= 'z')) return;
    //fprintf(stderr, "(%d,%d)%c", x, y, c[x][y]);
    v[x][y] = 1;
    for(int k=0; k<4; k++)
        DFS(x + X[k], y + Y[k]);
}
int main() {
    freopen("family.in", "r", stdin);
    freopen("family.out", "w", stdout);
    gets(c[0]);
    sscanf(c[0], "%d", &n);
    for(int i=0; i<n; i++) {
        gets(c[i]);
        m = max(m, (int) strlen(c[i]));
    }
    for(int i=0; i<n; i++)
        for(int j=0; j<m; j++)
            if('a' <= c[i][j] && c[i][j] <= 'z')
                if(!v[i][j]) { s++; DFS(i, j); }
    printf("%d\n", s);
    return 0;
}