-
Notifications
You must be signed in to change notification settings - Fork 0
/
CTDL111.cpp
102 lines (82 loc) · 1.72 KB
/
CTDL111.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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// Cho trước một số nguyên n , nhiệm vụ là in ra số quân tượng lớn nhất có thể đặt trên một bàn cờ nxn sao cho không có hai quân tượng tấn công lẫn nhau.
#include <bits/stdc++.h>
using namespace std;
/* n nhỏ
int main(){
int t; cin >> t;
while(t--){
int n; cin >> n;
if (n < 1){
cout<<0<<endl;
}else if(n == 1){
cout<<1<<endl;
}else{
int ans = 2 *(n - 1);
cout<<ans<<endl;
}
}
}
*/
// n rất lớn
string subtract(string str1, string str2)
{
string res = "";
int n1 = str1.length();
int n2 = str2.length();
reverse(str1.begin(), str1.end());
reverse(str2.begin(), str2.end());
int carry = 0;
for (int i = 0; i < n2; i++) {
int subst = ((str1[i] - '0')
- (str2[i] - '0') - carry);
if (subst < 0) {
subst = subst + 10;
carry = 1;
}
else
carry = 0;
res.push_back(subst + '0');
}
for (int i = n2; i < n1; i++) {
int subst = ((str1[i] - '0') - carry);
if (subst < 0) {
subst = subst + 10;
carry = 1;
}
else
carry = 0;
res.push_back(subst + '0');
}
reverse(res.begin(), res.end());
return res;
}
string NumberOfBishops(string a)
{
if (a == "1")
return a;
else {
a = subtract(a, "1");
reverse(a.begin(), a.end());
int carry = 0;
for (int i = 0; i < a.size(); i++) {
int tmp = a[i] - '0';
tmp *= 2;
tmp += carry;
a[i] = '0' + (tmp % 10);
carry = tmp / 10;
}
if (carry > 0)
a += ('0' + carry);
reverse(a.begin(), a.end());
return a;
}
}
int main()
{
int t; cin >> t;
while(t--){
long long n; cin >> n;
string a = to_string(n);
cout << NumberOfBishops(a) << endl;
}
}