짱아의 개발 기록장

백준 7490번. 0 만들기(c++) / 구현 본문

Algorithm/Baekjoon

백준 7490번. 0 만들기(c++) / 구현

jungahshin 2021. 4. 1. 12:59
반응형

String을 백트래킹으로 구현하는 문제이다.

 

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
86
87
88
89
90
91
92
93
94
// 0만들기
#include <vector>
#include <algorithm>
#include <iostream>
 
using namespace std;
 
int testcase, n;
char oper[3= {'+'' ''-'};
vector<int> num;
vector<char> op;
vector<string> ans;
 
string trans()
{
    string s;
    s = to_string(num[0]);
    for(int i=0; i<op.size(); i++){
        s += op[i];
        s += to_string(num[i+1]);
    }
 
    return s;
}
 
int cal()
{
    vector<int> numTemp;
    vector<char> opTemp;
 
    string tmp = to_string(num[0]);
    for(int i=0; i<op.size(); i++){
        if(op[i]==' '){
            tmp += to_string(num[i+1]);
        }else{
            numTemp.push_back(stoi(tmp));
            tmp = "";
            tmp += to_string(num[i+1]);
            opTemp.push_back(op[i]);
        }
 
        if(i==op.size()-1){
            numTemp.push_back(stoi(tmp));
        }
    }
 
    int ans = numTemp[0];
    for(int i=0; i<opTemp.size(); i++){
        if(opTemp[i]=='+'){
            ans += numTemp[i+1];
        }else{
            ans -= numTemp[i+1];
        }
    }
    
    return ans;
}
 
void makeSeq(int n, int cnt)
{  
    if(cnt==n-1){
        if(cal()==0){
            ans.push_back(trans());
        }
        return;
    }
 
    for(int i=0; i<3; i++){
        op.push_back(oper[i]);
        makeSeq(n, cnt+1);
        op.pop_back();
    }
}
 
int main()
{
    cin>>testcase;
    for(int i=0; i<testcase; i++){
        num.clear();
        op.clear();
        ans.clear();
        cin>>n;
        for(int j=1; j<=n; j++){
            num.push_back(j);
        }
        makeSeq(n, 0);
        sort(ans.begin(), ans.end());
        for(int j=0; j<ans.size(); j++){
            cout<<ans[j]<<"\n";
        }
        cout<<"\n";
    }
    return 0;
}
cs
반응형
Comments