2024-11-16 07:48:23 +00:00
|
|
|
template<typename T>
|
|
|
|
struct fractional {
|
|
|
|
T p, q;
|
|
|
|
inline void reduce(void) {
|
|
|
|
if (q < 0) p = -p, q = -q;
|
|
|
|
if (p == 0) q = 1; else { T g = mygcd(p, q); p /= g; q /= g; }
|
|
|
|
}
|
|
|
|
fractional(void) : p(0), q(1) {}
|
|
|
|
template <typename U>
|
|
|
|
fractional(const U& p) : p(p), q(1) { reduce(); }
|
|
|
|
fractional(const T& p, const T& q) : p(p), q(q) { reduce(); }
|
2024-11-26 19:13:27 +00:00
|
|
|
friend inline fractional operator+(const fractional& lhs) { return *lhs; }
|
|
|
|
friend inline fractional operator-(const fractional& lhs) { return { -lhs.p, lhs.q }; }
|
|
|
|
friend inline fractional operator+(const fractional& lhs, const fractional& rhs) { return { lhs.p * rhs.q + lhs.q * rhs.p, lhs.q * rhs.q }; }
|
|
|
|
friend inline fractional operator-(const fractional& lhs, const fractional& rhs) { return lhs + (-rhs); }
|
|
|
|
friend inline fractional operator*(const fractional& lhs, const fractional& rhs) { return { lhs.p * rhs.p, lhs.q * rhs.q }; }
|
|
|
|
friend inline fractional operator/(const fractional& lhs, const fractional& rhs) { return lhs * fractional(rhs.q, rhs.p); }
|
2024-11-16 07:48:23 +00:00
|
|
|
inline fractional& operator+=(const fractional& rhs) { return *this = *this + rhs; }
|
|
|
|
inline fractional& operator-=(const fractional& rhs) { return *this = *this - rhs; }
|
|
|
|
inline fractional& operator*=(const fractional& rhs) { return *this = *this * rhs; }
|
|
|
|
inline fractional& operator/=(const fractional& rhs) { return *this = *this / rhs; }
|
2024-11-26 19:13:27 +00:00
|
|
|
friend inline bool operator==(const fractional& lhs, const fractional& rhs) { return lhs.p == rhs.p and lhs.q == rhs.q; }
|
|
|
|
friend inline bool operator!=(const fractional& lhs, const fractional& rhs) { return not (lhs == rhs); }
|
|
|
|
friend inline bool operator<(const fractional& lhs, const fractional& rhs) { return (lhs - rhs).p < 0; }
|
|
|
|
friend inline bool operator>=(const fractional& lhs, const fractional& rhs) { return not (lhs < rhs); }
|
|
|
|
friend inline bool operator>(const fractional& lhs, const fractional& rhs) { return lhs >= rhs and lhs != rhs; }
|
|
|
|
friend inline bool operator<=(const fractional& lhs, const fractional& rhs) { return lhs < rhs or lhs == rhs; }
|
2024-11-16 07:48:23 +00:00
|
|
|
};
|