Home

[백준][11000][골드5] 강의실 배정

Created
2025/02/11 09:59
import sys import heapq input = sys.stdin.readline n = int(input()) lectures = [list(map(int, input().split())) for _ in range(n)] lectures.sort(key=lambda x:(x[0], x[1])) h = [lectures[0][1]] for i in range(1, n): if h[0] <= lectures[i][0]: heapq.heappop(h) heapq.heappush(h, lectures[i][1]) print(len(h))
Python
복사