https://leetcode.com/problems/battleships-in-a-board/

 

Battleships in a Board - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

[풀이] BFS

 

1XN 또는 NX1 모양의 배를 찾는 문제. 

문제의 조건에 배는 인접하지 않고

valid한 map만 주어진다고 했으므로

BFS를 돌면서 찾은 그룹의 개수가 답이다.

 

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
57
58
59
#include <vector>
#include <cstdio>
#include <cstring>
#include <queue>
using namespace std;
 
int N, M;
int dy[4= { 0,0,1,-1 };
int dx[4= { 1,-1,0,0 };
 
struct P {
    int y;
    int x;
    P(int y, int x) :y(y), x(x) {}
};
 
void bfs(int a, int b, vector<vector<char>>& board,vector<vector<bool>>& visit) {
 
    queue<P> q;
    q.push(P(a, b));
    visit[a][b] = 1;
 
    while (!q.empty()) {
 
        int cy = q.front().y;
        int cx = q.front().x;
        q.pop();
        for (int i = 0; i < 4; i++) {
            int ty = cy + dy[i];
            int tx = cx + dx[i];
            if (ty < 0 || tx < 0 || ty >= N || tx >= M || visit[ty][tx] || board[ty][tx] =='.'continue;
            q.push(P(ty, tx));
            visit[ty][tx] = 1;
        }
    }
 
}
 
class Solution {
public:
    int countBattleships(vector<vector<char>>& board) {
        int ans = 0;
        N = board.size();
        M = board[0].size();
        vector<vector<bool>> visit(N);
        for (int i = 0; i < N;i++) visit[i].resize(M);
 
        for (int i = 0; i < N; i++) {
            for (int j = 0; j < M; j++) {
                if (board[i][j] == 'X' && !visit[i][j]) {
                    bfs(i, j, board, visit);
                    ans++;
                }
            }
        }
 
        return ans;
    }
};
cs

 

 

 

https://github.com/has2/Algorithm/blob/master/leetcode/419.%20Battleships%20in%20a%20Board.cpp

+ Recent posts