-
Notifications
You must be signed in to change notification settings - Fork 0
/
제주 초콜릿 지키기.cc
75 lines (60 loc) · 1.9 KB
/
제주 초콜릿 지키기.cc
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
/**
* 1번줄: 남은 초콜릿의 총 개수, 7H 작성.
* -> 직전 단계에 남아있던 초콜릿의 총 개수의 일의 자리 값을 진법으로 적용
* -> 0, 1이면 10진법
*
* 2번줄: 남은게 많은 순서대로 알파벳 공백없이 출력
* -> 남은게 없으면 작성 x
* -> 같으면 알파벳 순으로 정렬
* -> 남은게 0개면 NULL
*
*/
#include <iostream>
#include <algorithm>
using namespace std;
int H, T, C, K, G, M;
int h, t, c, k, g;
bool compare(pair<char, int> &a, pair<char, int> &b) {
if (a.second == b.second) {
return a.first - 'A' < b.first - 'A';
}
else return a.second > b.second;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> H >> T >> C >> K >> G;
cin >> M;
int formation = (H + T + C + K + G) % 10;
for (int i = 0; i < M; i++) {
cin >> h >> t >> c >> k >> g;
H -= h; T -= t; C -= c; K -= k; G -= g;
int total = H + T + C + K + G;
if (1 < formation) {
string str_total = "";
while (total) {
str_total += total % formation + '0';
total /= formation;
}
if (str_total == "") str_total = "0";
reverse(str_total.begin(), str_total.end());
cout << str_total << "7H\n";
}
else cout << total << "7H\n";
total = H + T + C + K + G;
formation = total % 10;
if (total == 0) {
cout << "NULL\n";
}
else {
pair<char, int> choco[5] = { {'H', H}, {'T', T}, {'C', C}, {'K', K}, {'G', G} };
sort(choco, choco + 5, compare);
for (int i = 0; i < 5; i++) {
if (choco[i].second == 0) continue;
cout << choco[i].first;
}
cout << '\n';
}
}
return 0;
}