Programers : 최대 공약수 / 최소 공배수 (유클리드 호제법)

김정욱·2021년 1월 19일
0

Algorithm - 문제

목록 보기
50/249
post-thumbnail
post-custom-banner

유클리드 호제법


* a와 b최대공약수(gcd) / 최대공배수(lcm)gcd*lcm=a*b를 성립한다

  • 유클리드 호제법으로 최대공약수를 쉽게 구할 수 있다.

코드

#include <string>
#include <vector>

using namespace std;

vector<int> solution(int n, int m) {
    vector<int> answer;
    /* 유클리드 호제법 */
    int c,a=n,b=m;
    while(b != 0)
    {
        c = a % b;
        a = b;
        b = c;
    }
    answer.push_back(a);
    // 나오는 a값이 최대공약수이다 (유클리드 호제법)
    answer.push_back(n*m/a);
    return answer;
}
profile
Developer & PhotoGrapher
post-custom-banner

0개의 댓글