※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※
이번에 볼 문제는 백준 9770번 문제인 GCD이다.
문제는 아래 링크를 확인하자.
https://www.acmicpc.net/problem/9770
9770번: GCD
The input contains positive integers, greater than zero and less than 1 million. The input may include at most 100 integers.
www.acmicpc.net
주어지는 정수들을 입력받고, 모든 가능한 (인덱스가) 서로 다른 두 정수쌍에 대하여 gcd를 구해 문제를 해결하자. gcd는 유클리드 알고리즘(Euclidean algorithm)을 이용해 빠르게 구해낼 수 있다.
입력은 while (cin>>val)과 같은 반복문을 이용하면 간단히 받을 수 있다.
아래는 제출한 소스코드이다.
#include <iostream>
#include <vector>
using namespace std;
int gcd(int x, int y) {
if (y == 0) return x;
return gcd(y, x % y);
}
int vecsize;
vector<int> vec;
int tmp;
int ans = 1;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
while (cin >> tmp) vec.emplace_back(tmp);
vecsize = vec.size();
for (int i = 0; i < vecsize; i++) {
for (int j = i + 1; j < vecsize; j++) {
ans = max(ans, gcd(vec[i], vec[j]));
}
}
cout << ans;
}
728x90
'BOJ' 카테고리의 다른 글
[BOJ 2033 // C++] 반올림 (0) | 2023.02.13 |
---|---|
[BOJ 27451 // C++] 마키마씨가 정해주는 오늘 점심의 맛 (0) | 2023.02.13 |
[BOJ 9772 // C++] Quadrants (0) | 2023.02.13 |
[BOJ 2292 // C++] 벌집 (0) | 2023.02.12 |
[BOJ 27481 // C++] Hotelier (0) | 2023.02.12 |