我是靠谱客的博主 香蕉云朵,最近开发中收集的这篇文章主要介绍[dfs] aw1113. 红与黑(dfs连通性模型+dfs计数方式+模板题),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

文章目录

    • 1. 题目来源
    • 2. 题目解析

1. 题目来源

链接:1113. 红与黑

2. 题目解析

模板题,注意起点也算一个砖块。


时间复杂度: O ( n 2 ) O(n^2) O(n2)

空间复杂度: O ( n 2 ) O(n^2) O(n2)


dfs

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>

using namespace std;

const int N = 25;

int n, m;
char g[N][N];
bool st[N][N];
int res;			// 全局记录答案

int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};

// 全局变量记录砖块个数
void dfs(int x, int y) {
    st[x][y] = true;
    
    for (int i = 0; i < 4; i ++ ) {
        int a = x + dx[i], b = y + dy[i];
        if (a < 0 || a >= n || b < 0 || b >= m) continue;
        if (g[a][b] == '#') continue;
        if (st[a][b]) continue;

        res ++ ;
        dfs(a, b);
    }
}

// 递归记录砖块个数
int dfs(int x, int y) {
    st[x][y] = true;
    
    int res = 1;
    for (int i = 0; i < 4; i ++ ) {
        int a = x + dx[i], b = y + dy[i];
        if (a < 0 || a >= n || b < 0 || b >= m) continue;
        if (g[a][b] == '#') continue;
        if (st[a][b]) continue;

        res += dfs(a, b);   // 递归传参
    }
    return res;
}

int main() {
    while (scanf("%d%d", &m, &n), m != 0 && n != 0) {
        for (int i = 0; i < n; i ++ ) scanf("%s", g[i]);
        
        
        int sx, sy;
        for (int i = 0; i < n; i ++ )
            for (int j = 0; j < m; j ++ ) 
                if (g[i][j] == '@') {
                    sx = i, sy = j;
                    break;
                }
                
        res = 1;			// 起始砖块为 1
        memset(st, 0, sizeof st);
        
        // int res = dfs(sx, sy);			// 递归传参
        
        dfs(sx, sy);
        printf("%dn", res);
    }

    return 0;
}

bfs

#include <iostream>
#include <cstring>
#include <cstdio>
#include <algorithm>
#include <queue>

using namespace std;

typedef pair<int, int> PII;

const int N = 25;

int n, m;
char g[N][N];
bool st[N][N];
PII q[N * N];

int dx[4] = {-1, 0, 1, 0}, dy[4] = {0, 1, 0, -1};

int bfs() {
    memset(st, 0, sizeof st);
    
    int sx, sy;
    for (int i = 0; i < n; i ++ )
        for (int j = 0; j < m; j ++ ) 
            if (g[i][j] == '@') {
                sx = i, sy = j;
                break;
            }
    int res = 1;
    int hh = 0, tt = 0;

    q[0] = {sx, sy};
    st[sx][sy] = true;

    while (hh <= tt) {
        auto t = q[hh ++ ];

        int x = t.first, y = t.second;
        for (int i = 0; i < 4; i ++ ) {
            int a = x + dx[i], b = y + dy[i];
            if (a < 0 || a >= n || b < 0 || b >= m) continue;
            if (g[a][b] == '#') continue;
            if (st[a][b]) continue;

            res ++ ;
            q[ ++ tt ] = {a, b};
            st[a][b] = true;
        }
    }

    return res;
}

int main() {
    while (scanf("%d%d", &m, &n), m != 0 && n != 0) {
        for (int i = 0; i < n; i ++ ) scanf("%s", g[i]);
    
        int res = bfs();
        printf("%dn", res);
    }

    return 0;
}

最后

以上就是香蕉云朵为你收集整理的[dfs] aw1113. 红与黑(dfs连通性模型+dfs计数方式+模板题)的全部内容,希望文章能够帮你解决[dfs] aw1113. 红与黑(dfs连通性模型+dfs计数方式+模板题)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(35)

评论列表共有 0 条评论

立即
投稿
返回
顶部