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
- 언리얼엔진5
- DeferredRendering
- 1563
- algorithm
- Programmers
- const
- 팰린드롬 만들기
- 백준
- directx
- IFileDialog
- 오블완
- 2294
- 줄 세우기
- RootMotion
- C
- NRVO
- UE5
- Frustum
- DirectX11
- winapi
- C++
- RVO
- baekjoon
- GeeksForGeeks
- softeer
- 티스토리챌린지
- Unreal Engine5
- 프로그래머스
- UnrealEngine4
- UnrealEngine5
Archives
- Today
- Total
목록1931번 (1)
Game Develop
[Algorithm] Baekjoon 1931번 : 회의실 배정
https://www.acmicpc.net/problem/1931 1931번: 회의실 배정 (1,4), (5,7), (8,11), (12,14) 를 이용할 수 있다. 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 struct Node { int start; int end; }; bool cmp(const Node& a, const Node& b) { if (a.end == b.end) return a.start n; for (int i = 0; i > a >> b; v.push_back({ a,..
Algorithm/Baekjoon
2022. 11. 23. 00:05