当前位置:   article > 正文

acwing算法提高之搜索--多源BFS与双端队列BFS

acwing算法提高之搜索--多源BFS与双端队列BFS

1 专题说明

本专题用来计算使用多源BFS和双端队列BFS求解的题目。

2 训练

题目1173矩阵距离

C++代码如下,

#include <iostream>
#include <queue>
#include <cstring>

using namespace std;

const int N = 1010;
int g[N][N];
int d[N][N];
int n, m;

int main() {
    queue<pair<int,int>> q;
    memset(d, -1, sizeof d);
    
    cin >> n >> m;
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            char c;
            cin >> c;
            g[i][j] = c - '0';
            if (g[i][j]) {
                q.push(make_pair(i,j));
                d[i][j] = 0;
            }
        }
    }
    
    int dirs[4][2] = {{-1,0}, {1,0}, {0,-1}, {0,1}};
    
    while (!q.empty()) {
        auto t = q.front();
        q.pop();
        
        //t下一步可以走到哪里
        for (int k = 0; k < 4; ++k) {
            int x = t.first + dirs[k][0];
            int y = t.second + dirs[k][1];
            
            if (x < 1 || x > n || y < 1 || y > m) continue;
            if (d[x][y] != -1) continue; 
            
            q.push(make_pair(x,y));
            d[x][y] = d[t.first][t.second] + 1;
        }
    }
    
    for (int i = 1; i <= n; ++i) {
        for (int j = 1; j <= m; ++j) {
            cout << d[i][j] << " ";
        }
        cout << endl;
    }
    
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

题目2

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/154799
推荐阅读
相关标签
  

闽ICP备14008679号