数细胞-swust oj

数细胞(0964)

一矩形阵列由数字0到9组成,数字1到9代表细胞,细胞的定义为沿细胞数字上下左右还是细胞数字则为同一细胞,求给定矩形阵列的细胞个数。编程需要用到的队列及其相关函数已经实现,你只需要完成count函数以及主函数即可。

第一行输入两个整数,分别代表矩阵的行和列 输入m*n的矩阵,由数字0到9组成。

4 10

1 2 3 4 5 1 1 1 6 7

1 0 3 4 5 6 1 5 1 0

2 0 4 5 6 6 1 6 7 1

0 0 6 0 6 6 1 0 8 9

细胞个数。

1

代码:

#include<stdio.h>
#include<iostream>
#include<string.h>
using namespace std;
int m, n;
int go[4][2] = { { -1, 0 }, { 1, 0 }, { 0, 1 }, { 0, -1 } };//定义方向数组:上下左右
int map[105][105];
void dfs(int x, int y)//遍历
{
    map[x][y] = 0;//之前把这里写成了map[x][y]=‘0‘;真是傻了,调了半天才调出来
    for (int i = 1; i <= 4; i++)//上下左右
    {//之前把这里写成了八个方向,所以怎么交都不对

            int gx = x + go[i-1][0];//左右
            int gy = y + go[i-1][1];//上下
            if (gx >= 0 && gx < m&&gy >= 0 && gy < n&&map[gx][gy] != 0)//在范围内,并且当前为细胞
            {
                dfs(gx, gy);//遍历某个区域
            }
    }
}
int main()
{

    int i, j, k=0;
    cin >> m >> n;
    {
        for (i = 0; i < m; i++)
        {
            for (j = 0; j < n; j++)
            {
                cin >> map[i][j];//输入地图
            }
        }
        for (i = 0; i < m; i++)
        {
            for (j = 0; j < n; j++)
                if (map[i][j] != 0)//初始
                {
                    k++;
                    dfs(i, j);//遍历
                }
        }
        cout << k ;
    }
    return 0;
}

这是第二种不同的写法,稍微麻烦了点:

#include<iostream>
using namespace std;
#define max 100
int m, n, str[max][max];
void Input()
{
    int i, j;
    cin >> m >> n;
    for (i = 0; i<m; i++)
    {
        for (j = 0; j<n; j++)
        {
            cin >> str[i][j];
        }
    }
}
bool exist(int x, int y)
{
    if (x >= 0 && x<m&&y >= 0 && y<n)
        return true;
    else
        return false;
}

void DFS(int x, int y)
{
    int tx, ty, i;
    str[x][y] = 0;
    for (i = 0; i<4; i++)
    {
        if (i == 0)
        {
            tx = x - 1;
            ty = y;
            if (exist(tx, ty))
            {
                if (str[tx][ty] != 0)
                {
                    DFS(tx, ty);
                }
            }
        }
        else
        if (i == 1)
        {
            tx = x + 1;
            ty = y;
            if (exist(tx, ty))
            {
                if (str[tx][ty] != 0)
                {
                    DFS(tx, ty);
                }
            }
        }
        else
        if (i == 2)
        {
            tx = x;
            ty = y + 1;
            if (exist(tx, ty))
            {
                if (str[tx][ty] != 0)
                {
                    DFS(tx, ty);
                }
            }
        }
        else
        if (i == 3)
        {
            tx = x;
            ty = y - 1;
            if (exist(tx, ty))
            {
                if (str[tx][ty] != 0)
                {
                    DFS(tx, ty);
                }
            }
        }
    }
}
int main()
{
    int i, j, count = 0;
    Input();
    for (i = 0; i<m; i++)
    {
        for (j = 0; j<n; j++)
        {
            if (str[i][j] != 0)
            {
                count++;
                DFS(i, j);
            }
        }
    }
    cout << count;
    return 0;
}
时间: 2024-10-24 12:28:48

数细胞-swust oj的相关文章

swust oj 1026--Egg pain&#39;s hzf

题目链接:http://acm.swust.edu.cn/problem/1026/ Time limit(ms): 3000 Memory limit(kb): 65535 hzf is crazy about reading math recently,and he is thinking about a boring problem. Now there are n integers Arranged in a line.For each integer,he wants to know

SWUST OJ Euclid&#39;s Game(0099)

Euclid's Game(0099) Time limit(ms): 1000 Memory limit(kb): 65535 Submission: 1855 Accepted: 589 Description Starts with two unequal positive numbers (M,N and M>N) on the board. Two players move in turn. On each move, a player has to write on the boar

线段树 [SWUST OJ 764] 校门外的树 Plus Plus

校门外的树 Plus Plus(0764) Time limit(ms): 1000 Memory limit(kb): 65535 Submission: 214 Accepted: 15 Description 西南某科技大学的校门外长度为 L 的公路上有一排树,每两棵相邻的树之间的间隔都是 1 米.我们可以把马路看成一个数轴,马路的一端在数轴 1 的位置,另一端在 L 的位置:数轴上的每个整数点,即 1,2,……,L,都种有一棵树. 现在要将这排树的某一段涂成某种颜色,给定 N 组区间[ 

[Swust OJ 404]--最小代价树(动态规划)

题目链接:http://acm.swust.edu.cn/problem/code/745255/ Time limit(ms): 1000 Memory limit(kb): 65535 Description 以下方法称为最小代价的字母树:给定一正整数序列,例如:4,1,2,3,在不改变数的位置的条件下把它们相加,并且用括号来标记每一次加法所得到的和. 例如:((4+1)+ (2+3))=((5)+(5))=10.除去原数不4,1,2,3之外,其余都为中间结果,如5,5,10,将中间结果相加

swust oj 649--NBA Finals(dp,后台略(hen)坑)

题目链接:http://acm.swust.edu.cn/problem/649/ Time limit(ms): 1000 Memory limit(kb): 65535 Consider two teams, Lakers and Celtics, playing a series of NBA Finals until one of the teams wins n games. Assume that the probability of Lakers winning a game is

背包 [POJ 2184 SWUST OJ 145] Cow Exhibition

Cow Exhibition Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9479   Accepted: 3653 Description "Fat and docile, big and dumb, they look so stupid, they aren't much  fun..."  - Cows with Guns by Dana Lyons The cows want to prove to

[Swust OJ 137]--波浪数(hash+波浪数构造)

题目链接:http://acm.swust.edu.cn/problem/137/ Time limit(ms): 1000 Memory limit(kb): 65535 Description 波浪数是在一对数字之间交替转换的数,如1212121,双重波浪数则是指在两种进制下都是波浪数的数,如十进制数191919是一个十进制下的波浪数,它对应的十一进制数121212也是一个波浪数,所以十进制数191919是一个双重波浪数. 类似的可以定义三重波浪数,三重波浪数在三种不同的进制中都是波浪数,甚

[Swust OJ 797]--Palindromic Squares(回文数水题)

题目链接:http://acm.swust.edu.cn/problem/797/ Time limit(ms): 1000 Memory limit(kb): 10000 Description Palindromes are numbers that read the same forwards as backwards. The number 12321 is a typical palindrome. Given a number base B (2 <= B <= 20 base 1

[Swust OJ 403]--集合删数

题目链接:http://acm.swust.edu.cn/problem/403/ Time limit(ms): 5000 Memory limit(kb): 65535 Description 一个集合有如下元素:1是集合元素:若P是集合的元素,则2 * P +1,4*P+5也是集合的元素,取出此集合中最小的K个元素,按从小到大的顺序组合成一个多位数,现要求从中删除M个数位上的数字,使得剩下的数字最大,编程输出删除前和删除后的多位数字. 注:不存在所有数被删除的情况 Input 输入的仅一行