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
- 줄 세우기
- Frustum
- Unreal Engine5
- IFileDialog
- GeeksForGeeks
- softeer
- 티스토리챌린지
- UnrealEngine5
- DeferredRendering
- Programmers
- NRVO
- algorithm
- winapi
- 프로그래머스
- RVO
- 2294
- baekjoon
- 1563
- C
- 언리얼엔진5
- 백준
- UnrealEngine4
- directx
- const
- UE5
- RootMotion
- C++
- 팰린드롬 만들기
- 오블완
- DirectX11
Archives
- Today
- Total
목록11052 (1)
Game Develop
[Algorithm]Baekjoon 11052 : 카드 구매하기
https://www.acmicpc.net/problem/11052 11052번: 카드 구매하기 첫째 줄에 민규가 구매하려고 하는 카드의 개수 N이 주어진다. (1 ≤ N ≤ 1,000) 둘째 줄에는 Pi가 P1부터 PN까지 순서대로 주어진다. (1 ≤ Pi ≤ 10,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 int n; int moneys[1001] = { 0 }; int dp[1001] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> n; for (int i ..
Algorithm/Baekjoon
2023. 10. 17. 10:32