Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- 백트래킹
- 자료구조
- 투 포인터
- BFS
- 구현
- VR
- 다이나믹 프로그래밍
- 재귀
- 수학
- 다익스트라
- 알고리즘
- 브루트포스
- 문자열
- 정렬
- 그래프
- 그리디 알고리즘
- Unreal Engine 5
- 누적 합
- DFS
- 시뮬레이션
- 스택
- ue5
- Team Fortress 2
- c++
- 유니온 파인드
- XR Interaction Toolkit
- 트리
- 우선순위 큐
- 유니티
- 백준
Archives
- Today
- Total
1일1알
백준 2942번 퍼거슨과 사과 C++ 본문
https://www.acmicpc.net/problem/2942
2942번: 퍼거슨과 사과
맨체스터 유나이티드의 감독 퍼거슨은 빨간 사과를 R개, 초록 사과를 G개 가지고 있다. 훈련장에 있는 선수들 중 몇 명에게 나누어 주려고 한다. 단, 선수들이 서로 같은 개수의 사과를 받지 못하
www.acmicpc.net
r과 g의 최대공약수를 구하고 최대공약수의 약수들을 구한다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int GetGcd(int a, int b) {
if (a % b == 0) return b;
return GetGcd(b, a % b);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int r, g;
cin >> r >> g;
int gcd = GetGcd(r, g);
vector<int> v;
for (int i = 1; i * i <= gcd; i++) {
if (gcd % i == 0) {
v.push_back(i);
if (gcd == i * i) continue;
v.push_back(gcd / i);
}
}
for (auto a : v) {
cout << a << " " << r / a << " " << g / a << "\n";
}
}
'알고리즘' 카테고리의 다른 글
백준 7795번 먹을 것인가 먹힐 것인가 C++ (0) | 2023.03.04 |
---|---|
백준 22233번 가희와 키워드 C++ (0) | 2023.03.03 |
백준 20208번 진우의 민트초코우유 C++ (0) | 2023.03.01 |
백준 11332번 시간초과 C++ (1) | 2023.02.28 |
백준 14713번 앵무새 C++ (0) | 2023.02.27 |