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
- 백준
- GeeksForGeeks
- 오블완
- NRVO
- 1563
- softeer
- RootMotion
- UE5
- C
- algorithm
- DeferredRendering
- DirectX11
- 2294
- 티스토리챌린지
- winapi
- 프로그래머스
- const
- directx
- baekjoon
- RVO
- 줄 세우기
- 팰린드롬 만들기
- UnrealEngine4
- Unreal Engine5
- Frustum
- UnrealEngine5
- Programmers
- C++
- 언리얼엔진5
- IFileDialog
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1535번 :: 안녕 본문
https://www.acmicpc.net/problem/1535
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
|
int n;
int staminas[21];
int happiness[21];
int dp[21][100] = { 0 }; // 물건, 체력
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 1; i <= n; ++i)
{
cin >> staminas[i];
}
for (int i = 1; i <= n; ++i)
{
cin >> happiness[i];
}
for (int i = 1; i <= n; ++i)
{
int stamina = staminas[i];
int happy = happiness[i];
for (int j = 0; j <= 99; ++j) // 체력
{
if (j >= stamina) // 인사할 체력되면
{
dp[i][j] = max(dp[i - 1][j], dp[i - 1][j - stamina] + happy);
}
else
{
dp[i][j] = dp[i - 1][j];
}
}
}
cout << dp[n][99];
}
|
cs |
배낭문제를 아주 조금만 응용해서 풀면 된다.
체력은 0이되면 안되며, 소모할체력이 0인값이 들어올수도 있기 때문에 0부터 99까지 반복문을 돌아주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2212번 :: 센서 (1) | 2024.01.26 |
---|---|
[Algorithm]Baekjoon 2502번 :: 떡 먹는 호랑이 (1) | 2024.01.24 |
[Algorithm]Baekjoon 15993번 :: 1,2,3 더하기 9 (1) | 2024.01.23 |
[Algorithm]Baekjoon 15993번 :: 1,2,3 더하기 8 (1) | 2024.01.23 |
[Algorithm]Baekjoon 15992번 :: 1,2,3 더하기 7 (1) | 2024.01.23 |