백준 1931 회의실 배정 c++
그리디 알고리즘이고 사용할 수 있는 회의실의 최대 개수를 출력하면 된다 알고리즘 시간에 본 적 있는 유형인데 Interval Scheduling Problem이다 자료에서 힌트를 얻어 끝나는 시간이 제일 빠른 거 부터 고르는 알고리즘을 선택했다 시간 초과난 코드 #include using namespace std; int main() { ios_base::sync_with_stdio(false); int n,count=0; cin >> n; int endindex=0,startindex=0; int** schedule = new int* [n]; for (int i = 0; i < n; i++) { schedule[i] = new int[2]; } for (int i = 0; i < n; i++) { f..
코딩 테스트/백준
2022. 2. 20. 19:09
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- DML
- 리눅스
- DDL
- 데이터베이스
- CSS
- oauth
- 우분투
- 프로그래머스
- Android Studio
- bfs
- 인프콘2024
- html #웹 #웹사이트 #플레이리스트
- SQL
- git 예전 커밋 수정
- html
- 오픈소스
- kloa
- 2024인프콘
- SpringBoot
- authorization_code
- 클로아
- 데이터3법
- infcon 2024
- 데이터 3법
- 로스트아크 캐릭터
- git commit 수정
- javascript
- oauth2.0
- git
- authorization code
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함