forked from ndb796/python-for-coding-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
5.cpp
61 lines (54 loc) · 1.37 KB
/
5.cpp
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
#include <bits/stdc++.h>
using namespace std;
int n;
// 연산을 수행하고자 하는 수 리스트
vector<int> arr;
// 더하기, 빼기, 곱하기, 나누기 연산자 개수
int add, sub, mul, divi;
// 최솟값과 최댓값 초기화
int minValue = 1e9;
int maxValue = -1e9;
// 깊이 우선 탐색 (DFS) 메서드
void dfs(int i, int now) {
// 모든 연산자를 다 사용한 경우, 최솟값과 최댓값 업데이트
if (i == n) {
minValue = min(minValue, now);
maxValue = max(maxValue, now);
}
else {
// 각 연산자에 대하여 재귀적으로 수행
if (add > 0) {
add -= 1;
dfs(i + 1, now + arr[i]);
add += 1;
}
if (sub > 0) {
sub -= 1;
dfs(i + 1, now - arr[i]);
sub += 1;
}
if (mul > 0) {
mul -= 1;
dfs(i + 1, now * arr[i]);
mul += 1;
}
if (divi > 0) {
divi -= 1;
dfs(i + 1, now / arr[i]);
divi += 1;
}
}
}
int main(void) {
cin >> n;
for (int i = 0; i < n; i++) {
int x;
cin >> x;
arr.push_back(x);
}
cin >> add >> sub >> mul >> divi;
// DFS 메서드 호출
dfs(1, arr[0]);
// 최댓값과 최솟값 차례대로 출력
cout << maxValue << '\n' << minValue << '\n';
}