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
- 2294
- Frustum
- C
- Programmers
- 프로그래머스
- 언리얼엔진5
- RVO
- UnrealEngine4
- IFileDialog
- directx
- 백준
- RootMotion
- 팰린드롬 만들기
- C++
- UE5
- winapi
- 줄 세우기
- NRVO
- 티스토리챌린지
- DirectX11
- 1563
- algorithm
- 오블완
- softeer
- DeferredRendering
- const
- baekjoon
- Unreal Engine5
- UnrealEngine5
- GeeksForGeeks
Archives
- Today
- Total
목록2293 (1)
Game Develop
[Algorithm] Baekjoon 2293번 : 동전 1
https://www.acmicpc.net/problem/2293 2293번: 동전 1 첫째 줄에 n, k가 주어진다. (1 ≤ n ≤ 100, 1 ≤ k ≤ 10,000) 다음 n개의 줄에는 각각의 동전의 가치가 주어진다. 동전의 가치는 100,000보다 작거나 같은 자연수이다. www.acmicpc.net 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 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); vector coins; int n, k, temp; int dp[100001] = { 0 }; cin >> n >> k; f..
Algorithm/Baekjoon
2023. 4. 23. 20:16