Game Develop

[Algorithm] Programmers :: 무인도 여행 본문

Algorithm/Programmers

[Algorithm] Programmers :: 무인도 여행

MaxLevel 2023. 2. 2. 16:19

https://school.programmers.co.kr/learn/courses/30/lessons/154540

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

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
60
61
62
63
64
65
66
67
68
69
70
71
72
struct Node
{
    int y;
    int x;
};
 
vector<string> arr;
int arrRow;
int arrCol;
int dir[4][2= { {-1,0}, {1,0}, {0,-1}, {0,1} };
 
 
int BFS(int startY, int startX)
{
    int result = 0;
 
    queue<Node> q;
    q.push({ startY,startX });
    result += arr[startY][startX] - '0';
    arr[startY][startX] = 'X';
 
    while (!q.empty())
    {
        int curY = q.front().y;
        int curX = q.front().x;
        q.pop();
 
        for (int i = 0; i < 4++i)
        {
            int nextY = curY + dir[i][0];
            int nextX = curX + dir[i][1];
 
            if (nextY < 0 || nextY >= arrRow) continue;
            if (nextX < 0 || nextX >= arrCol) continue;
            if (arr[nextY][nextX] == 'X'continue;
 
            result += arr[nextY][nextX] - '0';
            arr[nextY][nextX] = 'X';
            q.push({ nextY,nextX });
        }
    }
 
    return result;
}
 
vector<int> solution(vector<string> maps) {
    vector<int> answer;
 
    arr = maps;
    arrRow = maps.size();
    arrCol = maps[0].size();
 
    for (int i = 0; i < arrRow; ++i)
    {
        for (int j = 0; j < arrCol; ++j)
        {
            if (arr[i][j] != 'X')
            {
                int temp = BFS(i, j);
                answer.push_back(temp);
            }
        }
    }
 
    sort(answer.begin(), answer.end());
 
    if (answer.size() == 0)
    {
        answer.push_back(-1);
    }
    return answer;
}
cs

 

기본적인 탐색문제.