This repository was archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTesting.cpp
240 lines (201 loc) · 7 KB
/
Testing.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#include <iostream>
#include <vector>
#include <cmath>
#include <regex>
#include <string>
#include <chrono>
#define ll long long
using namespace std;
using namespace std::chrono;
string add(string a, string b)
{
a = string(max(a.size(), b.size()) + 1 - a.size(), '0') + a;
b = string(a.size() - b.size(), '0') + b;
for (int i = a.size() - 1, carry = 0; i >= 0; i--)
{
int sum = a[i] + b[i] - 96 + carry;
carry = sum / 10;
a[i] = sum % 10 + '0';
}
int i = a.find_first_not_of('0');
return 0 <= i ? a.substr(i) : a.substr(0, 1);
}
string multiply(const string& t, const string& b)
{
//t and b can be very large
int tsize = static_cast<int>(t.size());
int bsize = static_cast<int>(b.size());
vector<size_t> pos(static_cast<size_t>(tsize + bsize), 0);
for (int i = tsize - 1; i >= 0; i--) {
for (int j = bsize - 1; j >= 0; j--) {
int mul = (t[i] - '0') * (b[j] - '0');
int p1 = i + j, p2 = i + j + 1;
int sum = mul + pos[p2];
pos[p1] += sum / 10;
pos[p2] = sum % 10;
}
}
string res;
for (const auto& p : pos) if (!(res.size() == 0 && p == 0)) res.push_back('0' + p);
return (res.size() == 0) ? "0" : res;
}
string subtract(string a, string b) {
string str = "";
int n1 = a.length(), n2 = b.length();
int diff = n1 - n2;
int carry = 0;
for (int i = n2 - 1; i >= 0; i--) {
int sub = ((a[i + diff] - '0') - (b[i] - '0')
- carry);
if (sub < 0) {
sub = sub + 10;
carry = 1;
}
else
carry = 0;
str.push_back(sub + '0');
}
// subtract remaining digits of str1[]
for (int i = n1 - n2 - 1; i >= 0; i--) {
if (a[i] == '0' && carry) {
str.push_back('9');
continue;
}
int sub = ((a[i] - '0') - carry);
if (i > 0 || sub > 0) // remove preceding 0's
str.push_back(sub + '0');
carry = 0;
}
reverse(str.begin(), str.end());
//remove leading zeroes
int i = str.find_first_not_of('0');
return 0 <= i ? str.substr(i) : str.substr(0, 1);
}
bool compare(string a, string b) {
//returns 1 if a > b else return 0;
// a and b are very large numbers
if (a.length() > b.length()) { return 1;}
if (a.length() < b.length()) { return 0;}
a = string(max(a.size(), b.size()) + 1 - a.size(), '0') + a;
b = string(a.size() - b.size(), '0') + b;
for (int i = 0;i < a.length();i++) {
if (int(a[i]-'0') > int(b[i]-'0')) { return 1; }
if (int(a[i] - '0') < int(b[i] - '0')) { return 0; }
}
return 0;
}
string removeleadingzeroes(string str) {
//remove leading zeroes
int i = str.find_first_not_of('0');
return 0 <= i ? str.substr(i) : str.substr(0, 1);
}
bool ok (string group, string col, int jump, int k){
//prod = col(jump + k) * (jump + k)
//returns false if prod < group
//returns true if prod >= group
string colk = col + to_string(jump+k);
string prod = multiply(colk, to_string(jump+k));
//Now compare
if (prod.length() < group.length()) { return 0;} // prod smaller
if (prod.length() > group.length()) { return 1;} //prod larger
if(prod==group)return 1; //prod equal to group
prod = string(max(prod.size(), group.size()) + 1 - prod.size(), '0') + prod;
group = string(prod.size() - group.size(), '0') + group;
for (int i = 0;i < prod.length();i++) {
if (int(prod[i]-'0') > int(group[i]-'0')) { return 1; }
if (int(prod[i] - '0') < int(group[i] - '0')) { return 0; }
}
return 0;
}
string square_root(const string s, long long precision) {
const long long n = s.length();
if(s.length()==0)return "INVALID";
string ans="", group="", col="";
long long i; //index
if (n % 2 == 0) { //leftmost group contains 2 digits and all other groups contain 2 digits
group += to_string(s[0]-'0') + to_string(s[1]-'0');
i = 2;
}
else { //leftmost gtroup contains 1 digit and other groups contain 2 digits
group += to_string(s[0] - '0');
i = 1;
}
//initialise ans, col, group
ans = to_string(int(sqrt(stoi(group))));
col = to_string(2 * stoi(ans));
group = to_string(stoi(group) - stoi(ans) * stoi(ans)); //group = group - ans^2
//corner case : is s has less than 2 digits, decide whether or not to put decimal point before entering big loop
if(i>s.length()-1){
if(multiply(ans,ans)==s){ //if perfect square, there are no decimals
return ans;
}else{
ans+=".";
}
}
bool AddDecimalPoint=0;
while (i < s.length() - 1 || precision > 0) {
if(i < s.length() - 1 ){
//drop 2 digits from s
group += to_string(s[i] - '0') + to_string(s[i + 1] - '0');
group = removeleadingzeroes(group);
i+=2;
if(i>=s.length() - 1){ //integer square root part is complete
AddDecimalPoint = 1;
}
}else{
group+="00";
precision--;
}
//We must now find the largest value of k such that (col(k)) * k <= group
//can be optimised using binary search algorithm
int k = 0;
for(int jump = 5; jump>=1; jump/=2)
{while (k+jump<10 && !ok(group,col,jump, k)) k += jump;}
string newstr = col + to_string(k); // newstr = (col(k))
string prod = multiply(newstr, to_string(k));
ans += to_string(k);
col += to_string(k);
group = subtract(group, prod); //group = group - prod
//new col = last digit of col + col
col = add(col, to_string(int(col[col.length() - 1] - '0')));
if(i>s.length()-1 && multiply(ans,ans)==s)return ans; //if perfect square, there are no decimals
if(AddDecimalPoint){ans+=".";AddDecimalPoint=0;}
}
return ans;
}
ll TimeAlgorithm(string p, ll precision) {
auto start = high_resolution_clock::now();
square_root(p,precision);
auto stop = high_resolution_clock::now();
auto duration = duration_cast<microseconds>(stop - start);
return duration.count();
}
string GenerateRandomNumber(ll n) {
//Generates a random positive integer having n digits. n > 0
string num = "0";
//first digit must be non-zero.
while (num == "0") {
num = to_string(rand() % 10);
}
n--;
//other digits can be 0-9
while (n--) {
num += to_string(rand() % 10);
}
return num;
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
ll t = 50; //number of test cases
ll c = 0; //number of times Algo0 took less time than Algo1
ll total = 0; //total time
ll precision =100;
for (ll i = 0;i < t;i++) {
if (i % 10 == 0) { cout <<i << "\n";}
ll NumberOfDigits = 1000; //this number is varied
string n1 = GenerateRandomNumber(NumberOfDigits);
total += TimeAlgorithm(n1,precision);
}
cout << "Averate time Algo0() :" << total / t << "\n";
}