#include <iostream>
#include <map>
#include <vector>
#include <algorithm>
#include <queue>
#include <string.h>
#include <set>
#define ll long long
using namespace std;
string sv(int n){
if(n == 1) {
return "1";
} else if (n == 2) {
return "1+1";
} else {
int rs = n/2;;
string rr = sv(rs);
if(rr.length() > 1)
rr = "(" + rr + ")";
if( n % 2) {
return "1+(1+1)*" + rr;
} else {
return "(1+1)*" + rr;
}
}
}
void solve() {
int n;
cin>>n;
string s = sv(n);
// int cnt = 0;
// for(int i=0; i<s.length(); ++i) {
// if(s[i] == '1'){
// cnt++;
// }
// }
// cout<<cnt<<"\n";
cout<<s<<"\n";
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin>>t;
while(t--) solve();
return 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 59 60 61 62 63 64 | #include <iostream> #include <map> #include <vector> #include <algorithm> #include <queue> #include <string.h> #include <set> #define ll long long using namespace std; string sv(int n){ if(n == 1) { return "1"; } else if (n == 2) { return "1+1"; } else { int rs = n/2;; string rr = sv(rs); if(rr.length() > 1) rr = "(" + rr + ")"; if( n % 2) { return "1+(1+1)*" + rr; } else { return "(1+1)*" + rr; } } } void solve() { int n; cin>>n; string s = sv(n); // int cnt = 0; // for(int i=0; i<s.length(); ++i) { // if(s[i] == '1'){ // cnt++; // } // } // cout<<cnt<<"\n"; cout<<s<<"\n"; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); int t; cin>>t; while(t--) solve(); return 0; } |
English