-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrational.h
137 lines (122 loc) · 2.91 KB
/
rational.h
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
#include<iostream>
#ifndef MATRIX_RATIONAL_H
#define MATRIX_RATIONAL_H
class Rational {
private:
long long x, y; /// x / y
long long gcd(long long a, long long b) {
if (!b)
return a;
return gcd(b, a % b);
}
void update() {
if (y < 0) {
x *= -1;
y *= -1;
}
long long c = gcd(std::abs(x), y);
x /= c;
y /= c;
}
public:
Rational(const long long a = 0, const long long b = 1) : x(a), y(b) {
}
Rational(const Rational &other) : x(other.x), y(other.y) {
}
Rational &operator=(const Rational &other) {
if (this == &other) {
return *this;
}
x = other.x;
y = other.y;
return *this;
}
Rational &operator+=(const Rational &other) {
x = x * other.y + other.x * y;
y *= other.y;
update();
return *this;
}
Rational &operator-=(const Rational &other) {
x = x * other.y - other.x * y;
y *= other.y;
update();
return *this;
}
Rational operator+(const Rational &other) {
Rational ans(*this);
ans += other;
return ans;
}
Rational operator-(const Rational &other) {
Rational ans(*this);
ans -= other;
return ans;
}
Rational &operator*=(const Rational &other) {
x *= other.x;
y *= other.y;
update();
return *this;
}
Rational operator*(const Rational &other) {
Rational ans(*this);
ans *= other;
return ans;
}
Rational &operator/=(const Rational &other) {
x *= other.y;
y *= other.x;
update();
return *this;
}
Rational operator/(const Rational &other) {
Rational ans(*this);
ans /= other;
return ans;
}
Rational reverse() const {
Rational ans(y, x);
ans.update();
return ans;
}
Rational operator-() const {
Rational ans(-x, y);
ans.update();
return ans;
}
friend Rational operator-(const Rational &a, const Rational &b) {
Rational ans = a;
ans = ans - b;
return ans;
}
friend Rational operator+(const Rational &a, const Rational &b) {
Rational ans = a;
ans = ans + b;
return ans;
}
friend std::istream &operator>>(std::istream &in, Rational &r) {
in >> r.x >> r.y;
return in;
}
friend std::ostream &operator<<(std::ostream &out, const Rational &r) {
out << r.x << "/" << r.y;
return out;
}
operator double() const {
return static_cast<double>(x) / y;
}
long long getx() const {
return x;
}
long long gety() const {
return y;
}
};
namespace std {
Rational abs(const Rational &a) {
Rational ans(std::abs(a.getx()), a.gety());
return ans;
}
}
#endif //MATRIX_RATIONAL_H