[백준 알고리즘] 1931번 회의실배정(Python)언어, 알고리즘 공부/백준2020. 3. 10. 16:39
Table of Contents
<Python>
import sys
N = int(input())
meeting = []
for _ in range(N):
meeting.append(list(map(int, sys.stdin.readline().split())))
meeting = sorted(meeting, key=lambda x : [x[1], x[0]]) #이부분
cnt = 0
max = 0
for i in meeting:
if max <= int(i[0]):
cnt +=1
max = int(i[1])
print(cnt)
▼링크
https://www.acmicpc.net/problem/1931
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 10872번 팩토리얼 (Python, Java) (0) | 2020.03.10 |
---|---|
[백준 알고리즘] 11399번 ATM (Python) (0) | 2020.03.10 |
[백준 알고리즘] 11047번 동전 0 (Python) (0) | 2020.03.10 |
[백준 알고리즘] 1065번 한수 (Python, Java) (0) | 2020.03.07 |
[백준 알고리즘] 4673번 셀프 넘버 (Python, Java) (0) | 2020.03.07 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!