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
- algorithm
- winapi
- DeferredRendering
- C++
- UnrealEngine5
- 1563
- 언리얼엔진5
- Frustum
- softeer
- 오블완
- 티스토리챌린지
- 팰린드롬 만들기
- 백준
- RVO
- Programmers
- 줄 세우기
- UE5
- 2294
- IFileDialog
- UnrealEngine4
- GeeksForGeeks
- directx
- 프로그래머스
- const
- RootMotion
- Unreal Engine5
- C
- DirectX11
- baekjoon
- NRVO
Archives
- Today
- Total
목록스타트링크 (1)
Game Develop
[Algorithm] Baekjoon 5014번 : 스타트링크
https://www.acmicpc.net/problem/5014 5014번: 스타트링크 첫째 줄에 F, S, G, U, D가 주어진다. (1 ≤ S, G ≤ F ≤ 1000000, 0 ≤ U, D ≤ 1000000) 건물은 1층부터 시작하고, 가장 높은 층은 F층이다. 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 struct Node { int curStair; int curCount; }; bool visited[1000001]; int BFS(int start, int target, int upNum, int do..
Algorithm/Baekjoon
2023. 2. 8. 22:09