Game Develop

[Algorithm] Programmers :: 거리두기 확인하기 본문

Algorithm/Programmers

[Algorithm] Programmers :: 거리두기 확인하기

MaxLevel 2023. 6. 4. 02:51

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

 

프로그래머스

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

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
73
74
75
76
77
78
79
80
81
82
83
84
85
struct Node
{
    int y;
    int x;
    int count;
};
 
int visited[6][6= { false };
int dir[4][2= { {-1,0}, {1,0}, {0,-1}, {0,1} };
 
bool BFS(int startRoom, int startY, int startX, vector<vector<string>>& places)
{
    memset(visited, falsesizeof(visited));
 
    queue<Node> q;
    q.push({ startY,startX,0 });
    visited[startY][startX] = true;
    places[startRoom][startY][startX] = '?';
 
    while (!q.empty())
    {
        int curY = q.front().y;
        int curX = q.front().x;
        int curCount = q.front().count;
        q.pop();
 
        if (places[startRoom][curY][curX] == 'P')
        {
            places[startRoom][startY][startX] = 'P';
            return false;
        }
 
        if (curCount == 2continue;
 
 
        for (int i = 0; i < 4++i)
        {
            int nextY = curY + dir[i][0];
            int nextX = curX + dir[i][1];
 
            if (nextY < 0 || nextY >= 5continue;
            if (nextX < 0 || nextX >= 5continue;
            if (visited[nextY][nextX]) continue;
            if (places[startRoom][nextY][nextX] == 'X'continue// 파티션으로 막혀있으면
 
            visited[nextY][nextX] = true;
            q.push({ nextY,nextX,curCount + 1 });
        }
    }
 
    places[startRoom][startY][startX] = 'P';
    return true;
}
 
vector<int> solution(vector<vector<string>> places) 
{
    vector<int> answer;
 
    for (int i = 0; i < 5++i) // 대기실
    {
        bool isBreak = false;
 
        for (int j = 0; j < 5++j) // 대기실의 행
        {
            for (int k = 0; k < 5++k)
            {
                if (places[i][j][k] == 'P')
                {
                    if (!BFS(i, j, k, places))
                    {
                        isBreak = true;
                        break;
                    }
                }
            }
 
            if (isBreak) break;
        }
 
        if (isBreak) answer.push_back(0);
        else answer.push_back(1);
    }
 
    return answer;
}
cs

기본적으로 값들이 작아서 탐색이 아니라 if문으로도 풀수 있긴한데, 만약 조건이 이것저것 붙는다면 탐색으로 푸는 방법을 알아야할 것이다.