2019-07-10 20:09:24 +00:00
|
|
|
"""
|
|
|
|
Extended Euclidean Algorithm.
|
|
|
|
|
|
|
|
Finds 2 numbers a and b such that it satisfies
|
|
|
|
the equation am + bn = gcd(m, n) (a.k.a Bezout's Identity)
|
2020-10-07 09:53:14 +00:00
|
|
|
|
|
|
|
https://en.wikipedia.org/wiki/Extended_Euclidean_algorithm
|
2019-07-10 20:09:24 +00:00
|
|
|
"""
|
|
|
|
|
2019-02-27 14:28:59 +00:00
|
|
|
# @Author: S. Sharma <silentcat>
|
|
|
|
# @Date: 2019-02-25T12:08:53-06:00
|
|
|
|
# @Email: silentcat@protonmail.com
|
2020-10-07 09:53:14 +00:00
|
|
|
# @Last modified by: pikulet
|
|
|
|
# @Last modified time: 2020-10-02
|
2021-09-07 11:37:03 +00:00
|
|
|
from __future__ import annotations
|
2019-02-27 14:28:59 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2019-07-10 20:09:24 +00:00
|
|
|
|
2021-09-07 11:37:03 +00:00
|
|
|
def extended_euclidean_algorithm(a: int, b: int) -> tuple[int, int]:
|
2019-07-10 20:09:24 +00:00
|
|
|
"""
|
|
|
|
Extended Euclidean Algorithm.
|
|
|
|
|
|
|
|
Finds 2 numbers a and b such that it satisfies
|
|
|
|
the equation am + bn = gcd(m, n) (a.k.a Bezout's Identity)
|
2020-10-07 09:53:14 +00:00
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(1, 24)
|
|
|
|
(1, 0)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(8, 14)
|
|
|
|
(2, -1)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(240, 46)
|
|
|
|
(-9, 47)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(1, -4)
|
|
|
|
(1, 0)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(-2, -4)
|
|
|
|
(-1, 0)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(0, -4)
|
|
|
|
(0, -1)
|
|
|
|
|
|
|
|
>>> extended_euclidean_algorithm(2, 0)
|
|
|
|
(1, 0)
|
|
|
|
|
2019-07-10 20:09:24 +00:00
|
|
|
"""
|
2020-10-07 09:53:14 +00:00
|
|
|
# base cases
|
|
|
|
if abs(a) == 1:
|
|
|
|
return a, 0
|
|
|
|
elif abs(b) == 1:
|
|
|
|
return 0, b
|
|
|
|
|
|
|
|
old_remainder, remainder = a, b
|
|
|
|
old_coeff_a, coeff_a = 1, 0
|
|
|
|
old_coeff_b, coeff_b = 0, 1
|
|
|
|
|
|
|
|
while remainder != 0:
|
|
|
|
quotient = old_remainder // remainder
|
|
|
|
old_remainder, remainder = remainder, old_remainder - quotient * remainder
|
|
|
|
old_coeff_a, coeff_a = coeff_a, old_coeff_a - quotient * coeff_a
|
|
|
|
old_coeff_b, coeff_b = coeff_b, old_coeff_b - quotient * coeff_b
|
|
|
|
|
|
|
|
# sign correction for negative numbers
|
|
|
|
if a < 0:
|
|
|
|
old_coeff_a = -old_coeff_a
|
|
|
|
if b < 0:
|
|
|
|
old_coeff_b = -old_coeff_b
|
|
|
|
|
|
|
|
return old_coeff_a, old_coeff_b
|
2019-02-27 14:28:59 +00:00
|
|
|
|
2019-07-10 20:09:24 +00:00
|
|
|
|
2019-02-27 14:28:59 +00:00
|
|
|
def main():
|
2019-07-10 20:09:24 +00:00
|
|
|
"""Call Extended Euclidean Algorithm."""
|
2019-02-27 14:28:59 +00:00
|
|
|
if len(sys.argv) < 3:
|
2019-10-05 05:14:13 +00:00
|
|
|
print("2 integer arguments required")
|
2022-10-16 05:25:38 +00:00
|
|
|
return 1
|
2020-10-07 09:53:14 +00:00
|
|
|
a = int(sys.argv[1])
|
|
|
|
b = int(sys.argv[2])
|
|
|
|
print(extended_euclidean_algorithm(a, b))
|
2022-10-16 05:25:38 +00:00
|
|
|
return 0
|
2019-02-27 14:28:59 +00:00
|
|
|
|
2019-07-10 20:09:24 +00:00
|
|
|
|
2019-10-05 05:14:13 +00:00
|
|
|
if __name__ == "__main__":
|
2022-10-16 05:25:38 +00:00
|
|
|
raise SystemExit(main())
|