当前位置:   article > 正文

笔试题大疆08.07_大疆测试开发工程师笔试

大疆测试开发工程师笔试

题目如下:
在这里插入图片描述
输入输出的测试用例如下所示:
测试用例如下:

6 6 2 3 3
37 37 39 41 13 205
37 41 41 203 39 243
37 41 40 131 40 41
91 41 39 198 41 9
189 41 39 40 40 38
37 124 38 167 41 41
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述
这道题采用BFS解决问题,这道题和力扣上岛屿问题很类似。
代码如下:

#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;

void bfs(vector<vector<int>>& grid, vector<vector<bool>>& box, int& nowNum, int nowx, int nowy, int T)
{
    vector<int> x = { 0,0,1,-1 };
    vector<int> y = { -1,1,0,0 };
    int target = grid[nowx][nowy];
    queue<pair<int, int>> pos;
    pos.push(make_pair(nowx, nowy));
    while (!pos.empty()) {
        for (int i = 0; i < 4; i++) {
            int tempx = pos.front().first + x[i];
            int tempy = pos.front().second + y[i];
            if (tempx >= 0 && tempy >= 0 && tempx < grid.size() && tempy < grid[0].size() && !box[tempx][tempy]
                && grid[tempx][tempy] >= target - T + 1 && grid[tempx][tempy] <= target + T - 1) {
                pos.push(make_pair(tempx, tempy));
                box[tempx][tempy] = true;
                nowNum++;
            }
        }
        pos.pop();
    }
}

int main()
{
    int n, m, x, y, t;
    int retSum = 0;
    cin >> n >> m >> x >> y >> t;
    vector<vector<int>> vec(n, vector<int>(m, 0));
    vector<vector<bool>> box(n, vector<bool>(m, false));
    for (size_t i = 0; i < n; ++i) {
        for (size_t j = 0; j < m; ++j) {
            cin >> vec[i][j];
        }
    }
    bfs(vec, box, retSum, y, x, t);
    cout << retSum << endl;

    system("Pause");
    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

运行结果如下:
在这里插入图片描述

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

闽ICP备14008679号