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
- 오블완
- 언리얼엔진5
- softeer
- Unreal Engine5
- 2294
- IFileDialog
- 프로그래머스
- UE5
- DirectX11
- 줄 세우기
- UnrealEngine5
- Programmers
- winapi
- algorithm
- Frustum
- directx
- DeferredRendering
- baekjoon
- C++
- UnrealEngine4
- RootMotion
- 백준
- GeeksForGeeks
- NRVO
- const
- RVO
- 1563
- C
- 팰린드롬 만들기
- 티스토리챌린지
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 2410번 :: 2의 멱수의 합 본문
https://www.acmicpc.net/problem/2410
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
|
#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;
const int mod = 1000000000;
int n;
int dp[1000001] = { 0 };
int coins[20] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
dp[0] = 1;
coins[0] = 1;
for (int i = 1; i <= 19; ++i)
{
coins[i] = coins[i - 1] * 2;
}
for (int i = 0; i <= 19; ++i)
{
int coin = coins[i];
if (coin > n) break;
for (int j = coin; j <= n; ++j)
{
dp[j] += dp[j - coin];
dp[j] %= mod;
}
}
cout << dp[n];
}
|
cs |
이 문제는 백준의 '동전'문제랑 동일하다.
서로 다른 단위의 동전이 주어졌을 때(단 각 단위의동전은 무한히 쓸 수 있다),
타겟금액을 만들 수 있는 모든 경우의 수를 구하는 문제이다.
이 문제에서는 타겟금액을 만들때 필요한 각 수의 단위는 2의 멱수라고 되어있다.
그러면 2의 멱수가 동전의 금액단위가 되는 것이다.
타겟금액인 n은 최대 100만이니, 2^19승까지가 동전의 금액단위가 될 수 있다.
왜 19승까지냐면 20승은 100만을 넘어서니까..
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 3687번 :: 성냥개비 (0) | 2024.05.23 |
---|---|
[Algorithm]Baekjoon 1695번 :: 팰린드롬 만들기 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1135번 : 뉴스 전하기 (0) | 2024.05.23 |
[Algorithm] Baekjoon 1660번 : 캡틴 이다솜 (0) | 2024.05.23 |
[Algorithm] Baekjoon 4781번 : 사탕 가게 (0) | 2024.05.23 |