숫자가 고정이고 연산자 위치만 바꾸면 되므로,

연산자의 갯수가 0이 아닐때를 기준으로 백트래킹 해주면 된다.




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
#include <iostream>
#include <algorithm>
using namespace std;
 
int t, n, max_res,min_res;
int oper[4];
int a[12];
 
void dfs(int v, int num) {
    
    if (v == n) {
        max_res = max(max_res, num);
        min_res = min(min_res, num);
    }
    else {
        if (oper[0!= 0) {
            oper[0]--;
            dfs(v + 1, num + a[v]);
            oper[0]++;
        }
        if(oper[1!= 0) {
            oper[1]--;
            dfs(v + 1, num - a[v]);
            oper[1]++;
        }
        if (oper[2!= 0) {
            oper[2]--;
            dfs(v + 1, num * a[v]);
            oper[2]++;
        }
        if (oper[3!= 0) {
            oper[3]--;
            dfs(v + 1, num / a[v]);
            oper[3]++;
        }
    }
}
 
int main() {
    ios_base::sync_with_stdio(false);
    
    cin >> t;
    for (int tc = 1; tc <= t; tc++) {
        cin >> n;
        for (int i = 0; i < 4; i++) {
            cin >> oper[i];
        }
        for (int i = 0; i < n; i++) {
            cin >> a[i];
        }
 
        max_res = -1e9;
        min_res = 1e9;
        dfs(1, a[0]);
 
        cout << "#" << tc << " " << max_res - min_res << "\n";
    }
}
cs


'SWEA::문제풀이' 카테고리의 다른 글

2382 미생물 격리  (2) 2018.03.29
4013 특이한 자석  (0) 2018.03.26
4012 요리사  (2) 2018.03.17
1258 행렬찾기  (0) 2018.02.25
1252 하나로  (0) 2018.02.25

+ Recent posts