Notice
Recent Posts
Recent Comments
Link
DevKim
[Python] 백준 #1931 회의실배정 본문
728x90
그리디 알고리즘.
n=int(input())
t_list=[]
cnt=0
for i in range(n):
meet=list(map(int,input().split()))
t_list.append(meet)
t_list=sorted(t_list,key=lambda x:x[0])
t_list=sorted(t_list,key=lambda x:x[1])
end=0
for i,j in t_list:
if(i>=end):
cnt+=1
end=j
print(cnt)
728x90
'알고리즘 PS' 카테고리의 다른 글
[Python] 백준 #1541 잃어버린 괄호 (0) | 2020.12.19 |
---|---|
[Python] 백준 #2217 로프 (0) | 2020.12.19 |
[Python] 백준 #11047 동전 0 (0) | 2020.12.19 |
[Python] 백준 #2839 설탕 배달 (0) | 2020.12.19 |
[Python] 백준 #1012 유기농 배추 (0) | 2020.12.19 |
Comments