-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBigInteger.cpp
123 lines (106 loc) · 2.56 KB
/
BigInteger.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
//#define SUBMIT
#ifdef SUBMIT
#define LOGLEVEL 0
#define NDEBUG
#else
#define LOGLEVEL 1
#endif
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <cassert>
#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <cmath>
#include <cstdlib>
#include <array>
#include <type_traits>
#include <queue>
#include <stack>
#include <functional>
using namespace std;
#define LOG(l, x) if (l <= LOGLEVEL) cout << x << endl
#define int64 long long
#define repeat(x) for (auto repeat_var = 0; repeat_var < x; ++repeat_var)
#define for_inc(i, x) for (auto i = 0; i < x; ++i)
#define for_dec(i, x) for (auto i = x - 1; i >= 0; --i)
#define for_inc_range(i, x, y) for (auto i = x; i <= y; ++i)
#define for_dec_range(i, x, y) for (auto i = x; i >= y; --i)
#define fill0(x) memset(x, 0, sizeof(x))
#define INT_INF ((int)2E9L)
#define INT64_INF ((int64)1E18L)
#define MOD 1000000007
template <int base = 10> class BigInteger {
vector<int> d;
bool isInfinity = false;
inline int getDigit(int i) const { return i >= d.size() ? 0 : d[i]; }
public:
static BigInteger getMaxValue() {
BigInteger r;
r.isInfinity = true;
return r;
}
template <class Iterator> BigInteger(Iterator begin, Iterator end) {
for (auto it = begin; it != end; ++it) {
d.push_back(*it);
}
reverse(d.begin(), d.end());
}
BigInteger() : BigInteger(0) {}
template <class T> BigInteger(T n) {
if (n == 0) {
d.push_back(0);
return;
}
while (n > 0) {
d.push_back(n % base);
n /= base;
}
}
BigInteger operator+(const BigInteger &a) {
BigInteger r;
size_t m = max(d.size(), a.d.size());
r.d.resize(m + 1);
for (int i = 0, c = 0; i < m + 1; ++i) {
r.d[i] = getDigit(i) + a.getDigit(i) + c;
if (r.d[i] >= base) {
c = 1;
r.d[i] -= base;
} else
c = 0;
}
return r;
}
template <class T> T mod(T p) {
T r = 0;
for (auto it = d.rbegin(); it != d.rend(); ++it) {
r = (r * base + *it) % p;
}
return r;
}
bool operator<(const BigInteger &a) const {
if (a.isInfinity) {
return true;
}
if (isInfinity) {
return false;
}
size_t m = max(d.size(), a.d.size());
for (int i = (int)m - 1; i >= 0; --i) {
if (getDigit(i) < a.getDigit(i))
return true;
if (getDigit(i) > a.getDigit(i))
return false;
}
return false;
}
string toString() {
string s;
for (auto it = d.rbegin(); it != d.rend(); ++it) {
s += (char)(*it + '0');
}
return s;
}
};