일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- backjoon
- Combinations
- BFS
- lambda
- 파이썬
- 프로그래머스
- programmers
- Zip
- DateTime
- 이분탐색
- 다익스트라
- divmod
- Set
- KAKAO BLIND RECRUITMENT
- 자바
- 그리디
- dfs
- 수학
- 카카오
- 재귀함수
- python
- 정규식
- Re
- 백준
- 정렬
- heapq
- 위클리 챌린지
- 추석맞이 코딩챌린지
- 동적 계획법
- java
Archives
- Today
- Total
상상쓰
[백준] 강의실 배정 본문
https://www.acmicpc.net/problem/11000
lecture 를 아래와 같이 정렬한다.
heapq 를 이용하여 강의(B)가 끝나는 시간을 queue 에 담는다. 만약 강의(B)의 시작 시각이 queue 에 있는 강의(A) 중 가장 빨리 마치는 시간과 비교하여 크면 A 를 queue 에서 빼고 B 를 담는다.
이 과정을 반복하여 얻은 queue 의 길이가 최소의 강의실 이용 횟수이다.
import sys, heapq
N = int(sys.stdin.readline())
lecture = []
queue = []
answer = 0
for i in range(N):
lecture.append(list(map(int, sys.stdin.readline().split())))
lecture.sort(key=lambda x : (x[0], x[1]))
for s, t in lecture:
if queue:
if queue[0] <= s:
heapq.heappop(queue)
heapq.heappush(queue, t)
answer = len(queue)
print(answer)
'Coding Test' 카테고리의 다른 글
[프로그래머스] 기능개발 (0) | 2021.07.01 |
---|---|
[백준] 게임을 만든 동준이 (0) | 2021.07.01 |
[백준] 2+1 세일 (0) | 2021.06.30 |
[백준] ZOAC 2 (0) | 2021.06.30 |
[프로그래머스] 체육복 (0) | 2021.06.30 |
Comments