洛谷P1454 圣诞夜的极光(bfs,dfs判断图的连通性)

本文介绍了如何使用深度优先搜索(DFS)和广度优先搜索(BFS)算法来判断图的连通性。通过这两个算法,从给定的起点找到所有可达的节点,以确定图是否连通。
摘要由CSDN通过智能技术生成

用bfs,dfs判断图的连通性,核心在于,搜到合法的某点,把于其联通的点全找到并记录或改判
题目链接

ACcode(dfs)

#include<bits/stdc++.h>

using namespace std;

int n, m;
char a[105][105];
int ans = 0;

int xx[12] = { 0,0,1,-1,2,-2,0,0,1,-1,1,-1 };
int yy[12] = { 1,-1,0,0,0,0,2,-2,1,1,-1,-1 };

void dfs(int x, int y) {
    if (x<1 || x>n || y<1 || y>m || a[x][y] != '#')return;
    a[x][y] = '-';
    for (int i = 0;i < 12;i++)dfs(x + xx[i], y + yy[i]);
}

int main()
{
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    cin >> n >> m;
    for (int i = 1;i <= n;i++)
        for (int j = 1;j <= m;j++)
            cin >> a[i][j];
    for (int i = 1;i <= n;i++) {
        for (int j = 1;j <= m;j++) {
            if (a[i][j] == '#') {
                ans++;
                dfs(i, j);
            }
        }
    }
    cout << ans;
    return 0;
}

ACcode(bfs)

#include<bits/stdc++.h>

using namespace std;

int n, m;
char a[105][105];
int ans = 0;
queue<int>qx, qy;

int xx[12] = { -2,2,-1,1,0,0,0,0,1,1,-1,-1 };
int yy[12] = { 0,0,0,0,-1,1,-2,2,1,-1,-1,1 };//12个方向

void bfs() {
    while (!qx.empty()) {
        int ax = qx.front();int ay = qy.front();
        qx.pop();qy.pop();
        for (int i = 0;i < 12;i++) {
            int bx = ax + xx[i];int by = ay + yy[i];
            if (bx >= 1 && bx <= n && by >= 1 && by <= m && a[bx][by] == '#') {
                a[bx][by] = '-';
                qx.push(bx);qy.push(by);
            }
        }
    }
}

int main()
{
    ios::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    cin >> n >> m;
    for (int i = 1;i <= n;i++)
        for (int j = 1;j <= m;j++)
            cin >> a[i][j];
    for (int i = 1;i <= n;i++) {
        for (int j = 1;j <= m;j++) {
            if (a[i][j] == '#') {
                ans++;
                qx.push(i);qy.push(j);
                bfs();
            }
        }
    }
    cout << ans;
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值