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
- 백준
- RootMotion
- DeferredRendering
- directx
- UnrealEngine4
- baekjoon
- 프로그래머스
- IFileDialog
- Programmers
- UnrealEngine5
- 언리얼엔진5
- UE5
- GeeksForGeeks
- NRVO
- algorithm
- 오블완
- const
- 팰린드롬 만들기
- 줄 세우기
- softeer
- C
- 티스토리챌린지
- RVO
- Unreal Engine5
- DirectX11
- Frustum
- C++
- 2294
- winapi
- 1563
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1660번 : 캡틴 이다솜 본문
https://www.acmicpc.net/problem/1660
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
|
#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;
int triangles[1001] = { 0 };
int tetraherons[1001] = { 0 };
int dp[300001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
memset(dp, 0x3f, sizeof(dp));
int maxTetrahedronSizeIndex = 0;
for (int i = 1; i <= 1000; ++i)
{
triangles[i] = triangles[i - 1] + i;
tetraherons[i] = tetraherons[i - 1] + triangles[i];
if (tetraherons[i] > n)
{
maxTetrahedronSizeIndex = i-1;
break;
}
}
dp[0] = 0;
for (int i = 1; i <= maxTetrahedronSizeIndex; ++i)
{
int tetrahedron = tetraherons[i];
for (int j = tetrahedron; j <= n; ++j)
{
dp[j] = min(dp[j], dp[j - tetrahedron] + 1);
}
}
cout << dp[n];
}
|
cs |
이 문제같은경우는 사실 동전시리즈 문제중 하나로 치환할 수 있다.
사면체를 만드는 방법이 주어지고, 여러크기의 사면체가 존재하게되는데 해당 사면체들을 사용해서 딱 n개만큼의 대포알만 소모하게하는 문제이다.
각 크기의 사면체마다 소모되는 대포알개수를 알고있다 가정하면, 이 대포알개수는 동전단위로 볼수 있다.
문제에서 사면체각각의 크기에대한 개수제한이 없기 때문에, 무한히 쓸 수 있다 가정하면 이 문제는 결국
각각의 무한히 쓸 수 있는 동전이 주어졌을 때, n값의 금액을 맞추는 최소의경우의 수를 구하는 문제이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2410번 :: 2의 멱수의 합 (0) | 2024.05.23 |
---|---|
[Algorithm] Baekjoon 1135번 : 뉴스 전하기 (0) | 2024.05.23 |
[Algorithm] Baekjoon 4781번 : 사탕 가게 (0) | 2024.05.23 |
[Algorithm] Baekjoon 12026번 : BOJ 거리 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1082번 : 방 번호 (0) | 2024.05.23 |