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
- IFileDialog
- winapi
- baekjoon
- C++
- RVO
- RootMotion
- 2294
- 팰린드롬 만들기
- NRVO
- 줄 세우기
- softeer
- 언리얼엔진5
- 프로그래머스
- GeeksForGeeks
- UnrealEngine4
- Programmers
- DeferredRendering
- algorithm
- Unreal Engine5
- 티스토리챌린지
- 백준
- directx
- UE5
- 오블완
- UnrealEngine5
- 1563
- Frustum
- DirectX11
- C
- const
Archives
- Today
- Total
목록RGB거리 2 (1)
Game Develop
[Algorithm]Baekjoon 17404번 :: RGB거리 2
https://www.acmicpc.net/problem/17404 17404번: RGB거리 2 첫째 줄에 집의 수 N(2 ≤ N ≤ 1,000)이 주어진다. 둘째 줄부터 N개의 줄에는 각 집을 빨강, 초록, 파랑으로 칠하는 비용이 1번 집부터 한 줄에 하나씩 주어진다. 집을 칠하는 비용은 1,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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 int arr[1001][3]; int n; int main() { ios::sync_with_stdio(false); cin.tie(..
Algorithm/Baekjoon
2023. 11. 28. 09:37