본문 바로가기
Algorithm/백트래킹

[백준] 1759 암호 만들기 c++

by 젊은오리 2023. 3. 7.
728x90

 

문제 링크 https://www.acmicpc.net/problem/1759

KEY

  • 일반적인 백트래킹 기법에 조건을 체크하는 것이 추가된 문제이다.
  • DFS로 완전탐색을 하다가 임시배열의 크기가 l이 되면 문제조건을 체크한 후, 출력한다.
  • 사전 순 출력은 DFS탐색 전에 sort로 해결하였다.

Code

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
#include<iostream>
#include<vector>
#include<algorithm>
#include<queue>
#include<cstring>
using namespace std;
const int MAX = 16;
int l,c;
vector<char> v;
vector<char> tmp;
bool check(vector<char> v) { //문제조건 체크
    int vowel = 0;
    for (int i = 0; i < v.size(); i++) {
        if (v[i] == 'a' || 
            v[i] == 'e' || 
            v[i] == 'i' || 
            v[i] == 'o' || 
            v[i] == 'u') {
            vowel++;
        }
    }
    if (vowel >= 1 && l-vowel >= 2)//모음 1개 이상, 자음 2개 이상 필수 
        return true;
    return false;
}
 
void dfs(int idx) {
    if ((int)tmp.size() == l) {
        if (check(tmp)) {
            for (int i = 0; i < tmp.size(); i++) {
                cout << tmp[i];
            }
            cout << "\n";
        }
        return;
    }
    for (int i = idx; i < c; i++) {
        tmp.push_back(v[i]);
        dfs(i + 1);
        tmp.pop_back();
    }
}
int main()
{
    cin >> l >> c;
    for (int i = 0; i < c; i++) {
        char alp;
        cin >> alp;
        v.push_back(alp);
    }
    sort(v.begin(),v.end());
    dfs(0);
 
}
cs
728x90

'Algorithm > 백트래킹' 카테고리의 다른 글

[백준] 10819 차이를 최대로 c++  (0) 2023.03.09
[백준] 6603 로또 c++  (0) 2023.03.08
[백준] 1182 부분수열의 합 c++  (0) 2023.03.07
[백준] 14888 연산자 끼워넣기 c++  (0) 2023.03.06
[백준] N과M(1)~(4)풀이 c++  (0) 2023.03.04

댓글