기술 블로그

2529번 부등호 본문

알고리즘 문제/BOJ

2529번 부등호

parkit 2019. 10. 1. 18:42
728x90
반응형

https://www.acmicpc.net/problem/2529



백트래킹 문제이다.


근데 왜 문제 분류는 위상정렬(그래프)인지는 모르겠다.


첫 시작(=before이 -1)은 무조건 실행돼야 하므로,

13번 째 줄에 if조건문을 추가했다.


백트래킹 함수(bt)의 idx는 vc(부등호) 벡터의 인덱스이다.






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 <bits/stdc++.h>
 
using namespace std;
 
int K;
string s, mins = "", maxs = "";
vector<char> vc;
bool use[10];
bool calc;
 
bool chk(int before, int now, char oper)
{
    if (before == -1return true;
    if (oper == '>'return before > now;
    return before < now;
}
 
void bt(int idx, int before, string numbers)
{
    if (idx == K)
    {        
        if(!calc)mins = numbers;
        else maxs = max(maxs, numbers);
        calc = true;
        return;
    }
 
    for (int i = 0; i <= 9; i++)
        if (!use[i] && chk(before, i, vc[idx]))
        {
            use[i] = true;
            numbers += to_string(i);
 
            if(before == -1) bt(idx, i, numbers);
            else bt(idx + 1, i, numbers);
 
            use[i] = false;
            numbers = numbers.substr(0, numbers.length() - 1);
        }    
}
 
int main(void)
{
    cin.tie(0);
    cin >> K;
    getchar();
    getline(cin, s);
    for (auto i : s) if (i != ' ') vc.push_back(i);
    bt(0-1"");
 
    cout << maxs << '\n' << mins << '\n';
 
    return 0;
}
cs












728x90
반응형

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

17609번 회문  (0) 2019.10.13
3190번 뱀  (0) 2019.10.10
17505번 링고와 순열  (0) 2019.09.30
17412번 도시 왕복하기 1  (0) 2019.09.29
1092번 배  (0) 2019.09.28