C++ 大整数

大整数

引入头文件,就可以用了,很方便。😆😆😆😆😆

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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
/*
* InfInt - Arbitrary-Precision Integer Arithmetic Library
* Copyright (C) 2013 Sercan Tutar
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
*
* USAGE:
* It is pretty straight forward to use the library. Just create an instance of
* InfInt class and start using it.
*
* Useful methods:
* intSqrt: integer square root operation
* digitAt: returns digit at index
* numberOfDigits: returns number of digits
* size: returns size in bytes
* toString: converts it to a string
*
* There are also conversion methods which allow conversion to primitive types:
* toInt, toLong, toLongLong, toUnsignedInt, toUnsignedLong, toUnsignedLongLong.
*
* You may define INFINT_USE_EXCEPTIONS and library methods will start raising
* InfIntException in case of error instead of writing error messages using
* std::cerr.
*
* See ReadMe.txt for more info.
*
*
* No overflows, happy programmers!
*
*/

#ifndef INFINT_H_
#define INFINT_H_

#include <iostream>
#include <vector>
#include <sstream>
#include <iomanip>
#include <climits>

//#include <limits.h>
//#include <stdlib.h>

#ifdef _WIN32
#define LONG_LONG_MIN LLONG_MIN
#define LONG_LONG_MAX LLONG_MAX
#define ULONG_LONG_MAX ULLONG_MAX
#endif

#ifdef INFINT_USE_EXCEPTIONS
#include <exception>
#endif

typedef int ELEM_TYPE;
typedef long long PRODUCT_TYPE;
static const ELEM_TYPE BASE = 1000000000;
static const ELEM_TYPE UPPER_BOUND = 999999999;
static const ELEM_TYPE DIGIT_COUNT = 9;
static const int powersOfTen[] = { 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000 };

#ifdef INFINT_USE_EXCEPTIONS
class InfIntException: public std::exception
{
public:
InfIntException(const std::string& txt) throw ();
~InfIntException() throw ();
const char* what() const throw ();
private:
std::string txt;
};

inline InfIntException::InfIntException(const std::string& txt) throw () :
std::exception(), txt(txt)
{
}

inline InfIntException::~InfIntException() throw ()
{
}

inline const char* InfIntException::what() const throw ()
{
return txt.c_str();
}
#endif

inline static div_t my_div(int num, int denom)
{
div_t result;
result.quot = num / denom;
result.rem = num - denom * result.quot;
return result;
}

inline static ldiv_t my_ldiv(long num, long denom)
{
ldiv_t result;
result.quot = num / denom;
result.rem = num - denom * result.quot;
return result;
}

inline static lldiv_t my_lldiv(long long num, long long denom)
{
lldiv_t result;
result.quot = num / denom;
result.rem = num - denom * result.quot;
return result;
}

class InfInt
{
friend std::ostream& operator<<(std::ostream &s, const InfInt &n);
friend std::istream& operator>>(std::istream &s, InfInt &val);

public:
/* constructors */
InfInt();
InfInt(const char* c);
InfInt(const std::string& s);
InfInt(int l);
InfInt(long l);
InfInt(long long l);
InfInt(unsigned int l);
InfInt(unsigned long l);
InfInt(unsigned long long l);
InfInt(const InfInt& l);

/* assignment operators */
const InfInt& operator=(const char* c);
const InfInt& operator=(const std::string& s);
const InfInt& operator=(int l);
const InfInt& operator=(long l);
const InfInt& operator=(long long l);
const InfInt& operator=(unsigned int l);
const InfInt& operator=(unsigned long l);
const InfInt& operator=(unsigned long long l);
const InfInt& operator=(const InfInt& l);

/* unary increment/decrement operators */
const InfInt& operator++();
const InfInt& operator--();
InfInt operator++(int);
InfInt operator--(int);

/* operational assignments */
const InfInt& operator+=(const InfInt& rhs);
const InfInt& operator-=(const InfInt& rhs);
const InfInt& operator*=(const InfInt& rhs);
const InfInt& operator/=(const InfInt& rhs); // throw
const InfInt& operator%=(const InfInt& rhs); // throw
const InfInt& operator*=(ELEM_TYPE rhs);

/* operations */
InfInt operator-() const;
InfInt operator+(const InfInt& rhs) const;
InfInt operator-(const InfInt& rhs) const;
InfInt operator*(const InfInt& rhs) const;
InfInt operator/(const InfInt& rhs) const; // throw
InfInt operator%(const InfInt& rhs) const; // throw
InfInt operator*(ELEM_TYPE rhs) const;

/* relational operations */
bool operator==(const InfInt& rhs) const;
bool operator!=(const InfInt& rhs) const;
bool operator<(const InfInt& rhs) const;
bool operator<=(const InfInt& rhs) const;
bool operator>(const InfInt& rhs) const;
bool operator>=(const InfInt& rhs) const;

/* integer square root */
InfInt intSqrt() const; // throw

/* digit operations */
char digitAt(size_t i) const; // throw
size_t numberOfDigits() const;

/* size in bytes */
size_t size() const;

/* string conversion */
std::string toString() const;

/* conversion to primitive types */
int toInt() const; // throw
long toLong() const; // throw
long long toLongLong() const; // throw
unsigned int toUnsignedInt() const; // throw
unsigned long toUnsignedLong() const; // throw
unsigned long long toUnsignedLongLong() const; // throw

private:
static ELEM_TYPE dInR(const InfInt& R, const InfInt& D);
static void multiplyByDigit(ELEM_TYPE factor, std::vector<ELEM_TYPE>& val);

void correct(bool justCheckLeadingZeros = false, bool hasValidSign = false);
void fromString(const std::string& s);
void optimizeSqrtSearchBounds(InfInt& lo, InfInt& hi) const;
void truncateToBase();
bool equalizeSigns();
void removeLeadingZeros();

std::vector<ELEM_TYPE> val; // number with base FACTOR
bool pos; // true if number is positive
};

inline InfInt::InfInt() : pos(true)
{
//PROFINY_SCOPE
val.push_back((ELEM_TYPE) 0);
}

inline InfInt::InfInt(const char* c)
{
//PROFINY_SCOPE
fromString(c);
}

inline InfInt::InfInt(const std::string& s)
{
//PROFINY_SCOPE
fromString(s);
}

inline InfInt::InfInt(int l) : pos(l >= 0)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == INT_MIN)
{
subtractOne = true;
++l;
}

if (!pos)
{
l = -l;
}
do
{
div_t dt = my_div(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

if (subtractOne)
{
--*this;
}
}

inline InfInt::InfInt(long l) : pos(l >= 0)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == LONG_MIN)
{
subtractOne = true;
++l;
}

if (!pos)
{
l = -l;
}
do
{
ldiv_t dt = my_ldiv(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

if (subtractOne)
{
--*this;
}
}

inline InfInt::InfInt(long long l) : pos(l >= 0)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == LONG_LONG_MIN)
{
subtractOne = true;
++l;
}

if (!pos)
{
l = -l;
}
do
{
lldiv_t dt = my_lldiv(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

if (subtractOne)
{
--*this;
}
}

inline InfInt::InfInt(unsigned int l) : pos(true)
{
//PROFINY_SCOPE
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
}

inline InfInt::InfInt(unsigned long l) : pos(true)
{
//PROFINY_SCOPE
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
}

inline InfInt::InfInt(unsigned long long l) : pos(true)
{
//PROFINY_SCOPE
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
}

inline InfInt::InfInt(const InfInt& l) : pos(l.pos), val(l.val)
{
//PROFINY_SCOPE
}

inline const InfInt& InfInt::operator=(const char* c)
{
//PROFINY_SCOPE
fromString(c);
return *this;
}

inline const InfInt& InfInt::operator=(const std::string& s)
{
//PROFINY_SCOPE
fromString(s);
return *this;
}

inline const InfInt& InfInt::operator=(int l)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == INT_MIN)
{
subtractOne = true;
++l;
}

pos = l >= 0;
val.clear();
if (!pos)
{
l = -l;
}
do
{
div_t dt = my_div(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

return subtractOne ? --*this : *this;
}

inline const InfInt& InfInt::operator=(long l)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == LONG_MIN)
{
subtractOne = true;
++l;
}

pos = l >= 0;
val.clear();
if (!pos)
{
l = -l;
}
do
{
ldiv_t dt = my_ldiv(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

return subtractOne ? --*this : *this;
}

inline const InfInt& InfInt::operator=(long long l)
{
//PROFINY_SCOPE
bool subtractOne = false;
if (l == LONG_LONG_MIN)
{
subtractOne = true;
++l;
}

pos = l >= 0;
val.clear();
if (!pos)
{
l = -l;
}
do
{
lldiv_t dt = my_lldiv(l, BASE);
val.push_back((ELEM_TYPE) dt.rem);
l = dt.quot;
} while (l > 0);

return subtractOne ? --*this : *this;
}

inline const InfInt& InfInt::operator=(unsigned int l)
{
//PROFINY_SCOPE
pos = true;
val.clear();
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
return *this;
}

inline const InfInt& InfInt::operator=(unsigned long l)
{
//PROFINY_SCOPE
pos = true;
val.clear();
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
return *this;
}

inline const InfInt& InfInt::operator=(unsigned long long l)
{
//PROFINY_SCOPE
pos = true;
val.clear();
do
{
val.push_back((ELEM_TYPE) (l % BASE));
l = l / BASE;
} while (l > 0);
return *this;
}

inline const InfInt& InfInt::operator=(const InfInt& l)
{
//PROFINY_SCOPE
pos = l.pos;
val = l.val;
return *this;
}

inline const InfInt& InfInt::operator++()
{
//PROFINY_SCOPE
val[0] += (pos ? 1 : -1);
this->correct(false, true);
return *this;
}

inline const InfInt& InfInt::operator--()
{
//PROFINY_SCOPE
val[0] -= (pos ? 1 : -1);
this->correct(false, true);
return *this;
}

inline InfInt InfInt::operator++(int)
{
//PROFINY_SCOPE
InfInt result = *this;
val[0] += (pos ? 1 : -1);
this->correct(false, true);
return result;
}

inline InfInt InfInt::operator--(int)
{
//PROFINY_SCOPE
InfInt result = *this;
val[0] -= (pos ? 1 : -1);
this->correct(false, true);
return result;
}

inline const InfInt& InfInt::operator+=(const InfInt& rhs)
{
//PROFINY_SCOPE
if (rhs.val.size() > val.size())
{
val.resize(rhs.val.size(), 0);
}
for (size_t i = 0; i < val.size(); ++i)
{
val[i] = (pos ? val[i] : -val[i]) + (i < rhs.val.size() ? (rhs.pos ? rhs.val[i] : -rhs.val[i]) : 0);
}
correct();
return *this;
}

inline const InfInt& InfInt::operator-=(const InfInt& rhs)
{
//PROFINY_SCOPE
if (rhs.val.size() > val.size())
{
val.resize(rhs.val.size(), 0);
}
for (size_t i = 0; i < val.size(); ++i)
{
val[i] = (pos ? val[i] : -val[i]) - (i < rhs.val.size() ? (rhs.pos ? rhs.val[i] : -rhs.val[i]) : 0);
}
correct();
return *this;
}

inline const InfInt& InfInt::operator*=(const InfInt& rhs)
{
//PROFINY_SCOPE
// TODO: optimize (do not use operator*)
*this = *this * rhs;
return *this;
}

inline const InfInt& InfInt::operator/=(const InfInt& rhs)
{
//PROFINY_SCOPE
if (rhs == 0)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("division by zero");
#else
std::cerr << "Division by zero!" << std::endl;
return *this;
#endif
}
InfInt R, D = (rhs.pos ? rhs : -rhs), N = (pos ? *this : -*this);
bool oldpos = pos;
std::fill(val.begin(), val.end(), 0);
for (int i = (int) N.val.size() - 1; i >= 0; --i)
{
R.val.insert(R.val.begin(), N.val[i]);
R.correct(true);
ELEM_TYPE cnt = dInR(R, D);
R -= D * cnt;
val[i] += cnt;
}
correct();
pos = (val.size() == 1 && val[0] == 0) ? true : (oldpos == rhs.pos);
return *this;
}

inline const InfInt& InfInt::operator%=(const InfInt& rhs)
{
//PROFINY_SCOPE
// TODO: optimize (do not use operator%)
*this = *this % rhs;
return *this;
// if (rhs == 0)
// {
//#ifdef INFINT_USE_EXCEPTIONS
// throw InfIntException("division by zero");
//#else
// std::cerr << "Division by zero!" << std::endl;
// return *this;
//#endif
// }
// InfInt D = (rhs.pos ? rhs : -rhs), N = (pos ? *this : -*this);
// bool oldpos = pos;
// val.clear();
// for (int i = (int) N.val.size() - 1; i >= 0; --i)
// {
// val.insert(val.begin(), N.val[i]);
// correct(true);
// *this -= D * dInR(*this, D);
// }
// correct();
// pos = (val.size() == 1 && val[0] == 0) ? true : oldpos;
// return *this;
}

inline const InfInt& InfInt::operator*=(ELEM_TYPE rhs)
{
//PROFINY_SCOPE
ELEM_TYPE factor = rhs < 0 ? -rhs : rhs;
bool oldpos = pos;
multiplyByDigit(factor, val);
correct();
pos = (val.size() == 1 && val[0] == 0) ? true : (oldpos == (rhs >= 0));
return *this;
}

inline InfInt InfInt::operator-() const
{
//PROFINY_SCOPE
InfInt result = *this;
result.pos = !pos;
return result;
}

inline InfInt InfInt::operator+(const InfInt& rhs) const
{
//PROFINY_SCOPE
InfInt result;
result.val.resize(val.size() > rhs.val.size() ? val.size() : rhs.val.size(), 0);
for (size_t i = 0; i < val.size() || i < rhs.val.size(); ++i)
{
result.val[i] = (i < val.size() ? (pos ? val[i] : -val[i]) : 0) + (i < rhs.val.size() ? (rhs.pos ? rhs.val[i] : -rhs.val[i]) : 0);
}
result.correct();
return result;
}

inline InfInt InfInt::operator-(const InfInt& rhs) const
{
//PROFINY_SCOPE
InfInt result;
result.val.resize(val.size() > rhs.val.size() ? val.size() : rhs.val.size(), 0);
for (size_t i = 0; i < val.size() || i < rhs.val.size(); ++i)
{
result.val[i] = (i < val.size() ? (pos ? val[i] : -val[i]) : 0) - (i < rhs.val.size() ? (rhs.pos ? rhs.val[i] : -rhs.val[i]) : 0);
}
result.correct();
return result;
}

inline InfInt InfInt::operator*(const InfInt& rhs) const
{
//PROFINY_SCOPE
InfInt result;
result.val.resize(val.size() + rhs.val.size(), 0);
PRODUCT_TYPE carry = 0;
size_t digit = 0;
for (;; ++digit)
{
lldiv_t dt = my_lldiv(carry, BASE);
carry = dt.quot;
result.val[digit] = (ELEM_TYPE) dt.rem;

bool found = false;
for (size_t i = digit < rhs.val.size() ? 0 : digit - rhs.val.size() + 1; i < val.size() && i <= digit; ++i)
{
PRODUCT_TYPE pval = result.val[digit] + val[i] * (PRODUCT_TYPE) rhs.val[digit - i];
if (pval >= BASE || pval <= -BASE)
{
lldiv_t dt = my_lldiv(pval, BASE);
carry += dt.quot;
pval = dt.rem;
}
result.val[digit] = (ELEM_TYPE) pval;
found = true;
}
if (!found)
{
break;
}
}
for (; carry > 0; ++digit)
{
lldiv_t dt = my_lldiv(carry, BASE);
result.val[digit] = (ELEM_TYPE) dt.rem;
carry = dt.quot;
}
result.correct();
result.pos = (result.val.size() == 1 && result.val[0] == 0) ? true : (pos == rhs.pos);
return result;
}

inline InfInt InfInt::operator/(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (rhs == 0)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("division by zero");
#else
std::cerr << "Division by zero!" << std::endl;
return 0;
#endif
}
InfInt Q, R, D = (rhs.pos ? rhs : -rhs), N = (pos ? *this : -*this);
Q.val.resize(N.val.size(), 0);
for (int i = (int) N.val.size() - 1; i >= 0; --i)
{
R.val.insert(R.val.begin(), N.val[i]);
R.correct(true);
ELEM_TYPE cnt = dInR(R, D);
R -= D * cnt;
Q.val[i] += cnt;
}
Q.correct();
Q.pos = (Q.val.size() == 1 && Q.val[0] == 0) ? true : (pos == rhs.pos);
return Q;
}

inline InfInt InfInt::operator%(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (rhs == 0)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("division by zero");
#else
std::cerr << "Division by zero!" << std::endl;
return 0;
#endif
}
InfInt R, D = (rhs.pos ? rhs : -rhs), N = (pos ? *this : -*this);
for (int i = (int) N.val.size() - 1; i >= 0; --i)
{
R.val.insert(R.val.begin(), N.val[i]);
R.correct(true);
R -= D * dInR(R, D);
}
R.correct();
R.pos = (R.val.size() == 1 && R.val[0] == 0) ? true : pos;
return R;
}

inline InfInt InfInt::operator*(ELEM_TYPE rhs) const
{
//PROFINY_SCOPE
InfInt result = *this;
ELEM_TYPE factor = rhs < 0 ? -rhs : rhs;
multiplyByDigit(factor, result.val);
result.correct();
result.pos = (result.val.size() == 1 && result.val[0] == 0) ? true : (pos == (rhs >= 0));
return result;
}

inline bool InfInt::operator==(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos != rhs.pos || val.size() != rhs.val.size())
{
return false;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] != rhs.val[i])
{
return false;
}
}
return true;
}

inline bool InfInt::operator!=(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos != rhs.pos || val.size() != rhs.val.size())
{
return true;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] != rhs.val[i])
{
return true;
}
}
return false;
}

inline bool InfInt::operator<(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos && !rhs.pos)
{
return false;
}
if (!pos && rhs.pos)
{
return true;
}
if (val.size() > rhs.val.size())
{
return pos ? false : true;
}
if (val.size() < rhs.val.size())
{
return pos ? true : false;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] < rhs.val[i])
{
return pos ? true : false;
}
if (val[i] > rhs.val[i])
{
return pos ? false : true;
}
}
return false;
}

inline bool InfInt::operator<=(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos && !rhs.pos)
{
return false;
}
if (!pos && rhs.pos)
{
return true;
}
if (val.size() > rhs.val.size())
{
return pos ? false : true;
}
if (val.size() < rhs.val.size())
{
return pos ? true : false;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] < rhs.val[i])
{
return pos ? true : false;
}
if (val[i] > rhs.val[i])
{
return pos ? false : true;
}
}
return true;
}

inline bool InfInt::operator>(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos && !rhs.pos)
{
return true;
}
if (!pos && rhs.pos)
{
return false;
}
if (val.size() > rhs.val.size())
{
return pos ? true : false;
}
if (val.size() < rhs.val.size())
{
return pos ? false : true;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] < rhs.val[i])
{
return pos ? false : true;
}
if (val[i] > rhs.val[i])
{
return pos ? true : false;
}
}
return false;
}

inline bool InfInt::operator>=(const InfInt& rhs) const
{
//PROFINY_SCOPE
if (pos && !rhs.pos)
{
return true;
}
if (!pos && rhs.pos)
{
return false;
}
if (val.size() > rhs.val.size())
{
return pos ? true : false;
}
if (val.size() < rhs.val.size())
{
return pos ? false : true;
}
for (int i = (int) val.size() - 1; i >= 0; --i)
{
if (val[i] < rhs.val[i])
{
return pos ? false : true;
}
if (val[i] > rhs.val[i])
{
return pos ? true : false;
}
}
return true;
}

inline void InfInt::optimizeSqrtSearchBounds(InfInt& lo, InfInt& hi) const
{
//PROFINY_SCOPE
InfInt hdn = 1;
for (int i = (int) this->numberOfDigits() / 2; i >= 2; --i)
{
hdn *= 10;
}
if (lo < hdn)
{
lo = hdn;
}
hdn *= 100;
if (hi > hdn)
{
hi = hdn;
}
}

inline InfInt InfInt::intSqrt() const
{
//PROFINY_SCOPE
if (*this <= 0)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("intSqrt called for non-positive integer");
#else
std::cerr << "intSqrt called for non-positive integer: " << *this << std::endl;
return 0;
#endif
}
InfInt hi = *this / 2 + 1, lo = 0, mid, mid2;
optimizeSqrtSearchBounds(lo, hi);
do
{
mid = (hi + lo) / 2; // 8 factor
mid2 = mid * mid; // 1 factor
if (mid2 == *this)
{
lo = mid;
break;
}
else if (mid2 < *this)
{
lo = mid;
}
else
{
hi = mid;
}
} while (lo < hi - 1 && mid2 != *this);
return lo;
}

inline char InfInt::digitAt(size_t i) const
{
//PROFINY_SCOPE
if (numberOfDigits() <= i)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("invalid digit index");
#else
std::cerr << "Invalid digit index: " << i << std::endl;
return -1;
#endif
}
return (val[i / DIGIT_COUNT] / powersOfTen[i % DIGIT_COUNT]) % 10;
}

inline size_t InfInt::numberOfDigits() const
{
//PROFINY_SCOPE
return (val.size() - 1) * DIGIT_COUNT +
(val.back() > 99999999 ? 9 : (val.back() > 9999999 ? 8 : (val.back() > 999999 ? 7 : (val.back() > 99999 ? 6 :
(val.back() > 9999 ? 5 : (val.back() > 999 ? 4 : (val.back() > 99 ? 3 : (val.back() > 9 ? 2 : 1))))))));
}

inline std::string InfInt::toString() const
{
//PROFINY_SCOPE
std::ostringstream oss;
oss << *this;
return oss.str();
}

inline size_t InfInt::size() const
{
//PROFINY_SCOPE
return val.size() * sizeof(ELEM_TYPE) + sizeof(bool);
}

inline int InfInt::toInt() const
{
//PROFINY_SCOPE
if (*this > INT_MAX || *this < INT_MIN)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of INT bounds: " << *this << std::endl;
#endif
}
int result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return pos ? result : -result;
}

inline long InfInt::toLong() const
{
//PROFINY_SCOPE
if (*this > LONG_MAX || *this < LONG_MIN)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of LONG bounds: " << *this << std::endl;
#endif
}
long result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return pos ? result : -result;
}

inline long long InfInt::toLongLong() const
{
//PROFINY_SCOPE
if (*this > LONG_LONG_MAX || *this < LONG_LONG_MIN)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of LLONG bounds: " << *this << std::endl;
#endif
}
long long result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return pos ? result : -result;
}

inline unsigned int InfInt::toUnsignedInt() const
{
//PROFINY_SCOPE
if (!pos || *this > UINT_MAX)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of UINT bounds: " << *this << std::endl;
#endif
}
unsigned int result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return result;
}

inline unsigned long InfInt::toUnsignedLong() const
{
//PROFINY_SCOPE
if (!pos || *this > ULONG_MAX)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of ULONG bounds: " << *this << std::endl;
#endif
}
unsigned long result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return result;
}

inline unsigned long long InfInt::toUnsignedLongLong() const
{
//PROFINY_SCOPE
if (!pos || *this > ULONG_LONG_MAX)
{
#ifdef INFINT_USE_EXCEPTIONS
throw InfIntException("out of bounds");
#else
std::cerr << "Out of ULLONG bounds: " << *this << std::endl;
#endif
}
unsigned long long result = 0;
for (int i = (int) val.size() - 1; i >= 0; --i)
{
result = result * BASE + val[i];
}
return result;
}

inline void InfInt::truncateToBase()
{
//PROFINY_SCOPE
for (size_t i = 0; i < val.size(); ++i) // truncate each
{
if (val[i] >= BASE || val[i] <= -BASE)
{
div_t dt = my_div(val[i], BASE);
val[i] = dt.rem;
if (i + 1 >= val.size())
{
val.push_back(dt.quot);
}
else
{
val[i + 1] += dt.quot;
}
}
}
}

inline bool InfInt::equalizeSigns()
{
//PROFINY_SCOPE
bool isPositive = true;
int i = (int) ((val.size())) - 1;
for (; i >= 0; --i)
{
if (val[i] != 0)
{
isPositive = val[i--] > 0;
break;
}
}

if (isPositive)
{
for (; i >= 0; --i)
{
if (val[i] < 0)
{
int k = 0, index = i + 1;
for (; (size_t)(index) < val.size() && val[index] == 0; ++k, ++index)
; // count adjacent zeros on left
//if ((size_t)(index) < val.size() && val[index] > 0)
{ // number on the left is positive
val[index] -= 1;
val[i] += BASE;
for (; k > 0; --k)
{
val[i + k] = UPPER_BOUND;
}
}
}
}
}
else
{
for (; i >= 0; --i)
{
if (val[i] > 0)
{
int k = 0, index = i + 1;
for (; (size_t)(index) < val.size() && val[index] == 0; ++k, ++index)
; // count adjacent zeros on right
//if ((size_t)(index) < val.size() && val[index] < 0)
{ // number on the left is negative
val[index] += 1;
val[i] -= BASE;
for (; k > 0; --k)
{
val[i + k] = -UPPER_BOUND;
}
}
}
}
}

return isPositive;
}

inline void InfInt::removeLeadingZeros()
{
//PROFINY_SCOPE
for (int i = (int) (val.size()) - 1; i > 0; --i) // remove leading 0's
{
if (val[i] != 0)
{
return;
}
else
{
val.erase(val.begin() + i);
}
}
}

inline void InfInt::correct(bool justCheckLeadingZeros, bool hasValidSign)
{
//PROFINY_SCOPE
if (!justCheckLeadingZeros)
{
truncateToBase();

if (equalizeSigns())
{
pos = ((val.size() == 1 && val[0] == 0) || !hasValidSign) ? true : pos;
}
else
{
pos = hasValidSign ? !pos : false;
for (size_t i = 0; i < val.size(); ++i)
{
val[i] = abs(val[i]);
}
}
}

removeLeadingZeros();
}

inline void InfInt::fromString(const std::string& s)
{
//PROFINY_SCOPE
pos = true;
val.clear();
val.reserve(s.size() / DIGIT_COUNT + 1);
int i = (int) s.size() - DIGIT_COUNT;
for (; i >= 0; i -= DIGIT_COUNT)
{
val.push_back(atoi(s.substr(i, DIGIT_COUNT).c_str()));
}
if (i > -DIGIT_COUNT)
{
std::string ss = s.substr(0, i + DIGIT_COUNT);
if (ss.size() == 1 && ss[0] == '-')
{
pos = false;
}
else
{
val.push_back(atoi(ss.c_str()));
}
}
if (val.back() < 0)
{
val.back() = -val.back();
pos = false;
}
correct(true);
}

inline ELEM_TYPE InfInt::dInR(const InfInt& R, const InfInt& D)
{
//PROFINY_SCOPE
ELEM_TYPE min = 0, max = UPPER_BOUND;
while (max > min)
{
ELEM_TYPE avg = max + min;
div_t dt = my_div(avg, 2);
avg = dt.rem ? (dt.quot + 1) : dt.quot;
InfInt prod = D * avg;
if (R == prod)
{
return avg;
}
else if (R > prod)
{
min = avg;
}
else
{
max = avg - 1;
}
}
return min;
}

inline void InfInt::multiplyByDigit(ELEM_TYPE factor, std::vector<ELEM_TYPE>& val)
{
//PROFINY_SCOPE
ELEM_TYPE carry = 0;
for (size_t i = 0; i < val.size(); ++i)
{
PRODUCT_TYPE pval = val[i] * (PRODUCT_TYPE) factor + carry;
if (pval >= BASE || pval <= -BASE)
{
lldiv_t dt = my_lldiv(pval, BASE);
carry = (ELEM_TYPE) dt.quot;
pval = dt.rem;
}
else
{
carry = 0;
}
val[i] = (ELEM_TYPE) pval;
}
if (carry > 0)
{
val.push_back(carry);
}
}

/**************************************************************/
/******************** NON-MEMBER OPERATORS ********************/
/**************************************************************/

inline std::istream& operator>>(std::istream &s, InfInt &n)
{
//PROFINY_SCOPE
std::string str;
s >> str;
n.fromString(str);
return s;
}

inline std::ostream& operator<<(std::ostream &s, const InfInt &n)
{
//PROFINY_SCOPE
if (!n.pos)
{
s << '-';
}
bool first = true;
for (int i = (int) n.val.size() - 1; i >= 0; --i)
{
if (first)
{
s << n.val[i];
first = false;
}
else
{
s << std::setfill('0') << std::setw(DIGIT_COUNT) << n.val[i];
}
}
return s;
}

#endif

代码链接