Game Develop

[Algorithm] Programmers :: 옹알이(1) 본문

Algorithm/Programmers

[Algorithm] Programmers :: 옹알이(1)

MaxLevel 2023. 3. 28. 00:30

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

 

프로그래머스

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

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
bool visited[4];
map<string, bool> m;
 
void DFS(int index, string s, int count, vector<string>& correctBabbling)
{
    m[s] = true;
 
    for (int i = 0; i < correctBabbling.size(); ++i)
    {
        if (i == index) continue;
        if (visited[i]) continue;
 
        visited[i] = true;
        DFS(i, s + correctBabbling[i], count+1, correctBabbling);
        visited[i] = false;
    }
}
 
 
int solution(vector<string> babbling) {
    int answer = 0;
 
    vector<string> correctBabbling = { "aya""ye""woo""ma" };
 
    for (int i = 0; i < correctBabbling.size(); ++i)
    {
        visited[i] = true;
        DFS(i, correctBabbling[i], 1, correctBabbling);
        visited[i] = false;
    }
    
    for (int i = 0; i < babbling.size(); ++i)
    {
        if (m[babbling[i]])
        {
            ++answer;
        }
    }
 
    return answer;
}
cs

그냥 프로그래머스 사이트에 들어갔다가 '오늘의 연습문제' 카테고리에 0레벨짜리 있길래 심심해서 풀어봤다.

사이즈가 매우 작기때문에 어떤 방법으로 하든 상관없긴한데 그냥 조합가능한 모든 경우의 수를 구해서 풀었다.

DFS로 조합가능한것들을 구하는 연습문제로 추천한다.