반응형
이 문제는 do while과 next_permutation을 통해 모든 경우를 고려하여 풀었습니다.
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
|
#include<iostream>
#include<vector>
#include<deque>
#include<algorithm>
using namespace std;
int N;
int ans;
int cal[5];
vector<int> val_sort;
vector<int> val;
deque<int> max_min;
void init() {
ans = 0;
}
//+(1) -(2) *(3) /(4)
void func() {
int sum;
do {
sum = val[0]; int pos = 1;
for (register int i = 0; i < val_sort.size(); i++) {
if (val_sort[i] == 1) {
sum += val[pos];
}
if (val_sort[i] == 2) {
sum -= val[pos];
}
if (val_sort[i] == 3) {
sum *= val[pos];
}
if (val_sort[i] == 4) {
sum /= val[pos];
}
if (i == N - 1) break;
pos++;
}
max_min.push_back(sum);
} while(next_permutation(val_sort.begin(), val_sort.end()));
sort(max_min.begin(),max_min.end());
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL); cout.tie(NULL);
int T;
scanf("%d", &T);
//cin >> T;
for (register int t = 1; t <= T; t++) {
init();
scanf("%d", &N);
for (register int i = 1; i < 5; i++) {
int temp_cal;
scanf("%d", &temp_cal);
//cin >> temp_cal;
if (temp_cal == 0) continue;
for (register int j = 1; j <= temp_cal; j++)
val_sort.push_back(i);
}
for (register int i = 1; i <= N; i++) {
int temp_val;
scanf("%d", &temp_val);
//cin >> temp_val;
val.push_back(temp_val);
}
func();
printf("#%d %d\n", t, ans);
//cout << "#" << t << " " << ans << endl;
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
반응형
'알고리즘 문제풀기 > SWEA' 카테고리의 다른 글
[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][5656번] 벽돌 깨기 (0) | 2019.08.05 |
---|---|
[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][5653번] 줄기세포배양 (0) | 2019.08.04 |
[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][4012번] 요리사 (0) | 2019.08.02 |
[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][4013번] 특이한 자석 (0) | 2019.08.02 |
[소프트웨어 익스퍼트 아카데미][SWEA][모의 SW 역량테스트][ C++][1953번] 탈주범 검거 (0) | 2019.07.24 |