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
- directx
- 티스토리챌린지
- 오블완
- GeeksForGeeks
- 프로그래머스
- 팰린드롬 만들기
- DirectX11
- softeer
- algorithm
- Unreal Engine5
- NRVO
- baekjoon
- 백준
- C++
- C
- RootMotion
- 줄 세우기
- Programmers
- 2294
- IFileDialog
- UnrealEngine5
- 1563
- DeferredRendering
- Frustum
- winapi
- UE5
- RVO
- UnrealEngine4
- 언리얼엔진5
- const
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 4781번 : 사탕 가게 본문
https://www.acmicpc.net/problem/4781
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int n, t;
float m;
int calories[5001] = { 0 };
int costs[5001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
while (1)
{
cin >> n >> m;
int maxCost = m * 100 + 0.5;
if (n == 0 && maxCost == 0) break;
for (int i = 1; i <= n; ++i)
{
int a;
float b;
cin >> a >> b;
calories[i] = a;
costs[i] = b * 100 + 0.5;
}
int dp[10001] = { 0 };
for (int i = 1; i <= n; ++i)
{
int calorie = calories[i];
int cost = costs[i];
for (int j = cost; j <= maxCost; ++j)
{
dp[j] = max(dp[j], dp[j - cost] + calorie);
}
}
printf("%d\n", dp[maxCost]);
}
}
|
cs |
각 캔디의 칼로리와 가격이 주어졌을 때, 특정금액으로 얻을 수 있는 최대 칼로리를 구하는 문제이다.
여기서 캔디는 '개수제한 없이' 구매할 수 있다.
꽤나 익숙한 유형이다. 동전문제의 여러유형중 한가지와 매우 비슷한 점화식으로 해결할 수 있다.
'무한대로 사용할 수 있는 유한종류개수의 동전이 주어졌을 때.... 어떠어떠한 값을 구하라'
라는 문제유형과 비슷하다. 여기서 어떠어떠한값은 뭐 이것저것이 될 수 있다.
특정금액을 만드는 모든 경우의 개수라던가.. 이번문제처럼 특정금액한도내에서 얻을 수 있는 최대칼로리를 구하라고 한다던가..
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 1135번 : 뉴스 전하기 (0) | 2024.05.23 |
---|---|
[Algorithm] Baekjoon 1660번 : 캡틴 이다솜 (0) | 2024.05.23 |
[Algorithm] Baekjoon 12026번 : BOJ 거리 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1082번 : 방 번호 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1253번 : 좋다 (1) | 2024.05.23 |