0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 08:45:25 +00:00
OI-codes/Luogu/problem/P1010/P1010.cpp

25 lines
399 B
C++
Raw Normal View History

2020-09-25 10:57:39 +00:00
// R38856378
#include <bits/stdc++.h>
using namespace std;
string d(int x, int i, string s) {
if (x == 0) {
return "0";
}
do {
if (x & 1) {
s = (i == 1 ? "2" : "2(" + d(i, 0, "") + ")") + (s == "" ? "" : "+") + s;
}
} while (++i, x >>= 1);
return s;
}
int main() {
int n;
cin >> n;
cout << d(n, 0, "") << endl;
return 0;
}