-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBigInteger.cpp
32 lines (24 loc) · 1.06 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
template<unsigned base>
class BigInteger
{
public:
unsigned len() const
{ return a.size(); }
unsigned &operator [](unsigned pos) // iterator fails if reallocation happens
{ expand(pos + 1); return a[pos]; }
BigInteger &operator +=(BigInteger &b)
{ expand(b.len()); for (unsigned i = 0; i < len(); i++) { a[i] += b[i]; } carry(); return *this; }
BigInteger &operator *=(unsigned x) // (v) overflow?
{ for (unsigned i = 0; i < len(); i++) { a[i] *= x; } carry(); return *this; }
bool operator <(const BigInteger &b)
{ return len() != b.len() ? len() < b.len() : lexicographical_compare(a.rend() - len(), a.rend(), b.a.rend() - len(), b.a.rend()); }
unsigned mod(unsigned m)
{ long long x = 0; for (int i = len() - 1; i >= 0; i--) { x = (x * base + a[i]) % m; } return x; }
void carry()
{ for (unsigned i = 0; i < len(); i++) { if (int t = a[i] / base) { (*this)[i + 1] += t; a[i] -= base * t; } } }
private:
void expand(unsigned n)
{ if (n > a.size()) { a.resize(n); } }
protected:
vector<unsigned> a;
};