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
- 1563
- 팰린드롬 만들기
- GeeksForGeeks
- UnrealEngine4
- directx
- Unreal Engine5
- Programmers
- 티스토리챌린지
- const
- 오블완
- baekjoon
- RVO
- C++
- 프로그래머스
- algorithm
- RootMotion
- DeferredRendering
- DirectX11
- UnrealEngine5
- 줄 세우기
- 백준
- IFileDialog
- Frustum
- UE5
- NRVO
- 언리얼엔진5
- 2294
- softeer
- C
- winapi
Archives
- Today
- Total
목록내리막 길 (1)
Game Develop
[Algorithm] Baekjoon 1520번 : 내리막 길
https://www.acmicpc.net/problem/1520 1520번: 내리막 길 여행을 떠난 세준이는 지도를 하나 구하였다. 이 지도는 아래 그림과 같이 직사각형 모양이며 여러 칸으로 나뉘어져 있다. 한 칸은 한 지점을 나타내는데 각 칸에는 그 지점의 높이가 쓰여 있으 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 48 49 50 51 int n, m; int dir[4][2] = { {-1,0}, {1,0}, {0,-1}, {0,1} }; int arr[501][501]; int..
Algorithm/Baekjoon
2023. 4. 23. 23:14