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
- winapi
- RootMotion
- Unreal Engine5
- UE5
- DeferredRendering
- 오블완
- DirectX11
- 팰린드롬 만들기
- 티스토리챌린지
- UnrealEngine4
- 1563
- baekjoon
- const
- RVO
- 줄 세우기
- 백준
- directx
- 언리얼엔진5
- NRVO
- 프로그래머스
- softeer
- algorithm
- IFileDialog
- GeeksForGeeks
- C++
- C
- Programmers
- 2294
- Frustum
- UnrealEngine5
Archives
- Today
- Total
목록쓰레기 치우기 (1)
Game Develop
[Algorithm] Baekjoon 1736번 : 쓰레기 치우기
https://www.acmicpc.net/problem/1736 1736번: 쓰레기 치우기 방은 세로 N, 가로 M (1 ≤ N, M ≤ 100) 크기의 격자 판으로 표현할 수 있다. 왼쪽 위의 위치를 (0, 0)이라 하고, 오른쪽 아래를 (N - 1, M - 1)이라고 하자. 이 판의 몇몇 칸에는 쓰레기가 놓여 있다. 쓰레 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 int dp[101][101]; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n, m; cin >> n >> m; for ..
Algorithm/Baekjoon
2023. 3. 14. 05:23