1188 음식 평론가
2019. 8. 5. 10:54ㆍ알고리즘/백준
사람과 소시지의 최대공약수를 응용한 문제다. 만일 소시지가 4개, 사람이 6명이라면 결국에는 소시지 2개를 사람 3명이서 나눠야 된다고 생각할 수 있다. 4개, 6명에서 2개, 3명으로 줄이는 과정은 최대공약수로 나눴다는 점이다. 2개와 3명은 더이상 나눌 수 없기 때문에, 3명에서 나누기 위해서는 3-1번 조각을 내어야만 한다
이를 수식으로 작성하면 result = gcd * (m/gcd - 1) = m - gcd가 된다
문제: https://www.acmicpc.net/problem/1188
깃허브주소: https://github.com/surinoel/boj/blob/master/1188.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
using namespace std; | |
int gcd(int a, int b) { | |
if (b == 0) { | |
return a; | |
} | |
return gcd(b, a % b); | |
} | |
int main(void) { | |
ios_base::sync_with_stdio(false); | |
cin.tie(nullptr); | |
int n, m; | |
cin >> n >> m; | |
cout << m - gcd(n, m) << '\n'; | |
return 0; | |
} |
'알고리즘 > 백준' 카테고리의 다른 글
14888 연산자 끼워넣기 (0) | 2019.08.07 |
---|---|
1952 수영장 (0) | 2019.08.06 |
3023 마술사 이민혁 (0) | 2019.08.04 |
10174 펠린드롬 (0) | 2019.08.03 |
1138 한 줄로 서기 (0) | 2019.08.02 |