PS/백준

1931번 - 회의실 배정

ForteQook 2022. 11. 8. 17:20

문제

1931번: 회의실 배정 (acmicpc.net)

 

1931번: 회의실 배정

(1,4), (5,7), (8,11), (12,14) 를 이용할 수 있다.

www.acmicpc.net

풀이

최대한 많은 회의실 예약을 받으려면 회의시간이 짧고 일찍 끝나는 회의를 받으면 된다. 우선순위 큐에 회의가 끝나는 시간, 시작하는 시간 순으로 넣어주면 된다.

import heapq
import sys

input = sys.stdin.readline

N = int(input().rstrip())
heap = []

for _ in range(N):
    start,end = map(int,input().split())
    heapq.heappush(heap,(end,start))

answer = 0
now = 0

while heap:
    end,start = heapq.heappop(heap)
    if start >= now:
        answer += 1
        now = end

print(answer)

 

'PS > 백준' 카테고리의 다른 글

10986번 - 나머지 합  (0) 2022.11.04
11659번 - 구간 합 구하기 4  (0) 2022.11.04
12865번 - 평범한 배낭  (0) 2022.11.04
9251번 - LCS  (0) 2022.11.04
2565번 - 전깃줄  (0) 2022.11.04