본문 바로가기

알고리즘/BOJ

2941번

2941번 - 크로아티아 알파벳


크로아티아 알파벳을 string 배열에 저장하고, 


완전탐색을 통해서 string 배열안에 있는 값과 맞다면 그 만큼 pos 를 이동시킨다.


만약 string 배열안에 있는 값이 아니라면, pos를 1만 이동시킨다.


<정답 코드>


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
#include<iostream>
#include<string>
using namespace std;
 
string croatia[8= { "c=","c-","dz=","d-","lj","nj","s=","z=" };
string str;
int ans = 0;
void dfs(int pos,int sum)
{
 
    if (pos == str.size())
    {
        cout << sum << "\n";
        exit(1);
    }
 
    for (int i = 0; i < 8; i++)
    {
        bool chk = true;
        for (int j = 0; j < croatia[i].size(); j++)
        {
            if (croatia[i][j] != str[pos + j])
            {
                chk = false;
                break;
            }
        }
 
        if (chk)
        {
            dfs(pos + croatia[i].size(), sum + 1);
        }
    }
 
 
    dfs(pos + 1,sum+1);
 
    return;
}
int main()
{
    
    cin >> str;
 
    dfs(0,0);
    return 0;
}
cs


반응형

'알고리즘 > BOJ' 카테고리의 다른 글

9084번  (0) 2018.02.25
2688번  (0) 2018.02.25
1890번  (0) 2018.02.24
1541번  (0) 2018.02.24
2965번  (0) 2018.02.24