Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- 코테
- 카카오
- 스마일게이트
- 중반부
- IBK기업은행 #기업은행 #디지털 #직무 #정리
- 코딩테스트
- 서버개발캠프
- Smilegate
- 소감
- Algorithm
- 1편
- 백준
- LIS #Algorithm #요소추적
- 투포인터
- 카카오인턴
- 식단
- Union-find
- 보석쇼핑
- 삼성 #코테 #2020상반기 #c++
- c++
- 유니온파인드
- BFS
- BaekJoon
Archives
- Today
- Total
짱아의 개발 기록장
백준 7490번. 0 만들기(c++) / 구현 본문
반응형
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 |
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
백준 4803번. 트리(c++) / 유니온파인드 (0) | 2021.04.02 |
---|---|
백준 13904번. 과제(c++) / Greedy (0) | 2021.04.01 |
백준 1194번. 달이 차오른다, 가자(c++) / BFS+비트마스킹 (0) | 2021.04.01 |
백준 1525번. 퍼즐(c++) / BFS (0) | 2021.03.31 |
백준 9328번. 열쇠(c++) / BFS+비트마스크 (0) | 2021.03.30 |
Comments