-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathTAP2014B.cpp
46 lines (46 loc) · 1.11 KB
/
TAP2014B.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
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/TAP2014B/
#include <algorithm>
#include <iostream>
#include <map>
#include <string>
using namespace std;
map<int, string> mapa;
const int MAXL = 7;
int pot3[13];
void solve(int val, int pos, string referencia) {
if (pos > MAXL) return;
int valplus = val + pot3[pos];
string refplus = referencia;
refplus.push_back('+');
mapa[valplus] = refplus;
solve(valplus, pos + 1, refplus);
int valminus = val - pot3[pos];
string refminus = referencia;
refminus.push_back('-');
mapa[valminus] = refminus;
solve(valminus, pos + 1, refminus);
referencia.push_back('0');
solve(val, pos + 1, referencia);
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
pot3[0] = 1;
for (int i = 1; i <= MAXL; i++) {
pot3[i] = 3 * pot3[i - 1];
}
string vazio;
solve(0, 0, vazio);
int TC;
cin >> TC;
while (TC--) {
int a;
cin >> a;
string exibir = mapa[a];
reverse(exibir.begin(), exibir.end());
cout << exibir << '\n';
}
return 0;
}