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
- C++
- winapi
- Frustum
- 줄 세우기
- DirectX11
- softeer
- RootMotion
- UE5
- 1563
- 언리얼엔진5
- 2294
- Unreal Engine5
- DeferredRendering
- baekjoon
- algorithm
- 프로그래머스
- UnrealEngine4
- GeeksForGeeks
- RVO
- const
- directx
- 오블완
- IFileDialog
- 티스토리챌린지
- Programmers
- NRVO
- 팰린드롬 만들기
- UnrealEngine5
- 백준
- C
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 7579 :: 앱 본문
https://www.acmicpc.net/problem/7579
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
|
int n, m, input;
int usingMemories[101] = { 0 };
int deActivateCosts[101] = { 0 };
int dp[101][10001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
for (int i = 1; i <= n; ++i)
{
cin >> usingMemories[i];
}
int sum = 0;
for (int i = 1; i <= n; ++i)
{
cin >> deActivateCosts[i];
sum += deActivateCosts[i];
}
dp[0][0] = 0;
int answer = 0x3f3f3f3f;
for (int i = 1; i <= n; ++i)
{
for (int j = 0; j <= sum; ++j)
{
if (deActivateCosts[i] <= j)
{
dp[i][j] = max(dp[i - 1][j], usingMemories[i] + dp[i - 1][j - deActivateCosts[i]]);
}
else
{
dp[i][j] = dp[i - 1][j];
}
if (dp[i][j] >= m)
{
answer = min(answer, j);
}
}
}
cout << answer;
}
|
cs |
배낭문제랑 비슷한 느낌이 났는데, 그렇다고 그걸 그대로 대입하려하면 안된다. 왜냐하면 m값이 최대 천만이기 때문에 그대로 적용하려하면 메모리도 초과되고 시간도 초과된다.
해결법은 역발상이다. 기준을 비용으로 잡고 dp테이블을 업데이트한다.
즉, dp[i][j]는 i번째 프로그램까지를 따졌을 때, j비용으로 비활성화 시킬 수 있는 최대 메모리이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 5557번 : 1학년 (0) | 2023.11.16 |
---|---|
[Algorithm]Baekjoon 1516번 : 게임 개발 (1) | 2023.11.16 |
[Algorithm]Baekjoon 14916 :: 거스름돈 (0) | 2023.11.15 |
[Algorithm]Baekjoon 1915 :: 가장 큰 정사각형 (0) | 2023.11.15 |
[Algorithm]Baekjoon 1937번 :: 욕심쟁이 판다 (1) | 2023.11.14 |