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 | 31 |
Tags
- mongodb
- 맥주 축제
- c++
- gorilla/mux
- 구현
- 누적합
- redis
- 다익스트라
- 17503
- 11659
- NCP
- 점수 따먹기
- SWEA
- 백준
- 이분 탐색
- 정렬
- dfs
- 민준이와 마산 그리고 건우
- 16985
- 크루스칼
- 최소신장트리
- mst
- 세그먼트 트리
- DP
- 구간합
- golang
- 21921
- Naver Cloud
- 시뮬레이션
- BOJ
Archives
- Today
- Total
Gi-Log
백준(BOJ) 14916 거스름돈 C++ 풀이 본문
문제 링크: https://www.acmicpc.net/problem/14916
문제 풀이에 이용된 알고리즘: 단순 구현
거스름돈으로 주는 동전의 개수를 최소화하고 싶다면, 우선 5원짜리 동전을 최대한 많이 사용하고 남은 금액을 2원으로 만들면 된다.
따라서 for문을 이용해서, 지급 가능한 5원짜리 동전을 하나씩 줄여가며, 매 경우에 5원으로 지급하고 남은 금액을 2원으로 지급 가능하다면 그 경우가 답이다.
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
31
32
33
34
35
36
37
38
39
40
41
42
|
/* BOJ 14916 거스름돈 */
#include <iostream>
#include <functional>
#include <algorithm>
#include <string>
#include <queue>
#include <stack>
#include <cmath>
#include <string.h>
#include <vector>
using namespace std;
#define endl '\n'
typedef long long ll;
int mon;
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
//freopen("input.txt", "r", stdin);
cin >> mon;
for (int i = mon / 5; i >= 0; --i)
{
if ((mon - i * 5) % 2 == 0)
{
cout << i + (mon - i * 5) / 2 << endl;
return 0;
}
}
cout << -1 << endl;
return 0;
}
|
cs |
Comments