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
- algorithm
- softeer
- 2294
- directx
- UnrealEngine5
- NRVO
- 오블완
- UnrealEngine4
- DeferredRendering
- C
- Frustum
- 백준
- RootMotion
- GeeksForGeeks
- C++
- RVO
- Unreal Engine5
- baekjoon
- DirectX11
- 티스토리챌린지
- 프로그래머스
- 언리얼엔진5
- 줄 세우기
- 1563
- winapi
- const
- Programmers
- 팰린드롬 만들기
- UE5
- IFileDialog
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 11047번 : 동전 0 본문
https://www.acmicpc.net/problem/11047
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
|
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n = 0;
int input = 0;
int targetMoney = 0;
vector<int> coins;
int answerCount = 0;
cin >> n >> targetMoney;
for (int i = 0; i < n; i++)
{
cin >> input;
coins.push_back(input);
}
for (int i = coins.size()-1; i >= 0; --i)
{
if (targetMoney % coins[i] != 0)
{
answerCount += (targetMoney / coins[i]);
targetMoney %= coins[i];
}
else
{
answerCount += (targetMoney / coins[i]);
break;
}
}
cout << answerCount;
}
|
cs |
그리디를 활용한 기본적인 동전개수구하기 문제.
저 코드로만해서 답이 구해지는건, 주어지는 동전크기가 이전 동전크기의 배수라서 가능한 것 같다.
만약 그런 조건이 없다면, 아마 저 코드로는 안풀릴것이다.
타겟이 1600이고, 동전이 각각 300, 800, 1000이 주어진다면 저 코드로는 풀리지 않는다.
올바른답은 800짜리 2개 사용하는게 맞지만, 위 코드로하면 1000짜리 1개, 300짜리 2개해서 총 3개가 답으로 나오기 때문이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2407번 : 조합 (1) | 2022.12.02 |
---|---|
[Algorithm] Baekjoon 11870번 : 좌표 압축 (0) | 2022.11.29 |
[Algorithm] Baekjoon 9461번 : 파도반 수열 (0) | 2022.11.29 |
[Algorithm] Baekjoon 6064번 : 카잉 달력 (1) | 2022.11.27 |
[Algorithm] Baekjoon 5525번 : IOIOI (0) | 2022.11.26 |