ユークリッドの互除法による最大公約数

Calendar Clock iconCalendar Clock icon

number-theory

目次

# 用途

2つの整数の最小公約数を求める.

# アルゴリズム

ユークリッドの互除法と呼ばれるアルゴリズム.

2つの数のうち小さい方をxx、大きい方をyyとおく.

次に割る数yyが0になるまで以下を繰り返す

  • r = x % y
  • x = y
  • y = r

xの最後の値が最大公約数.

# 計算量

%bb回繰り返すとすると、

O(logb)O(\log b)

# コード

// C++ 14
#include <iostream>
#include <string>
#include <vector>
#include <list>
#include <algorithm>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <unordered_map>
#include <math.h>

#define ll long long
#define Int int
#define loop(x, start, end) for(Int x = start; x < end; x++)
#define loopdown(x, start, end) for(int x = start; x > end; x--)
#define rep(n) for(int x = 0; x < n; x++)
#define span(a,x,y) a.begin()+x,a.begin()+y
#define span_all(a) a.begin(),a.end()
#define len(x) (x.size())
#define last(x) (*(x.end()-1))

using namespace std;
Int gcd(Int x, Int y) {
  if (x > y) swap(x, y);
  
  Int r;
  while (y > 0) {
    r = x % y;
    x = y;
    y = r;
  }
  return x;
}

リモートフリーランス。ウェブサービス、スマホアプリエンジニア。
東アジアを拠点に世界を移動しながら活動してます!

お仕事のご依頼・お問い合わせはこちら

コメント