[boj] (b2) 5585 거스름 돈
✅ 그리디
문제
풀이
전형적인 그리디 문제
코드
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int price, coin = 0;
cin >> price;
price = 1000 - price;
while (price != 0)
{
if (price >= 500)
{
coin += price / 500;
price = price % 500;
}
if (price >= 100)
{
coin += price / 100;
price = price % 100;
}
if (price >= 50)
{
coin += price / 50;
price = price % 50;
}
if (price >= 10)
{
coin += price / 10;
price = price % 10;
}
if (price >= 5)
{
coin += price / 5;
price = price % 5;
}
else{
coin += price;
price = price % 1;
}
}
cout << coin << "\n";
return 0;
}
Author And Source
이 문제에 관하여([boj] (b2) 5585 거스름 돈), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@peanut_/boj-b2-5585-거스름-돈
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int price, coin = 0;
cin >> price;
price = 1000 - price;
while (price != 0)
{
if (price >= 500)
{
coin += price / 500;
price = price % 500;
}
if (price >= 100)
{
coin += price / 100;
price = price % 100;
}
if (price >= 50)
{
coin += price / 50;
price = price % 50;
}
if (price >= 10)
{
coin += price / 10;
price = price % 10;
}
if (price >= 5)
{
coin += price / 5;
price = price % 5;
}
else{
coin += price;
price = price % 1;
}
}
cout << coin << "\n";
return 0;
}
Author And Source
이 문제에 관하여([boj] (b2) 5585 거스름 돈), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@peanut_/boj-b2-5585-거스름-돈저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)