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 |
Tags
- BFS
- 언리얼
- DFS
- lower_bound
- 너비우선탐색
- 알고리즘
- fsm
- c#
- 시리얼라이제이션
- unity
- 운영체제
- 유니티
- 유한상태기계
- 안드로이드
- upper_bound
- 게임개발
- 인프런
- 이득우
- 프로그래머스
- 게임개발공모전
- 개발일지
- 이분탐색
- UI 자동화
- 재귀
- 구현
- binary_search
- c++
- 백준
- 웅진씽크빅
- unreal
Archives
- Today
- Total
목록정렬 (1)
초고교급 희망
[백준][C++]1931번 회의실 배정
그리디를 이용한 문제였다. 회의가 끝나는 시간이 빠른 기준으로 정렬한다. 회의가 끝나는 시간이 동일하다면 시작하는 시간이 빠른 기준으로 정렬한다. #include #include #include #include using namespace std; int n; pair conference[100005]; bool func(pair a, pair b) { if (a.second == b.second) { return a.first > n; for (int i = 0; i > conference[i].first >> conference[i].second; } sort(c..
Algorithm/Baekjoon
2023. 11. 20. 16:31